Is there a way to create and manage a session in h...
# http4k
s
Is there a way to create and manage a session in http4k?
d
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
Thanks
155 Views