https://kotlinlang.org logo
#http4k
Title
# http4k
s

Shingi Chanakira

03/18/2021, 1:05 PM
Is there a way to create and manage a session in http4k?
d

dave

03/18/2021, 1:24 PM
not in-built, because in memory session management isn't really a thing today. We'd generally recommend using RequestContexts to lookup sessions based on headers etc. https://www.http4k.org/cookbook/request_context/ in that - you'd look up the sessionId then map it to some backing store session
s

Shingi Chanakira

03/18/2021, 1:55 PM
Thanks
67 Views