async-session
async-session copied to clipboard
Async session support with plugabble backends
with this change, frameworks can specify if they need any or all of these constraints, like `SessionStore + Send + Sync + 'static` closes #33
It seems when using the `Session` with tide's session middleware, it's not possible to modify the session expiry because it is not wrapped in an `Arc` (I think). This can...
A `Session ` has a data field of type `HashMap`. This forces a session to always use JSON for serialization/deserialization. In my case I would prefer if it was a...
I am writing some web server using [axum](https://docs.rs/axum/latest/axum/) library where I use multiple traits and put them in request [extensions](https://docs.rs/axum/latest/axum/struct.Extension.html) by converting them to Arc so that I don't have...
Hi, First of all, thanks for creating such simple and convenient library. I would like to check that if we call `set_cookie_value` it should regenerate the id right? https://github.com/http-rs/async-session/blob/main/src/session.rs#L341-L343 Regards,
I was debugging mongo and couldn't find the creation date in the session store. We should probably track this for all sessions; even if not tracked by UTC it does...