Redis #136
Answered
by
maxcountryman
HosMercury
asked this question in
Q&A
Redis
#136
-
what redis crate do you use ? |
Beta Was this translation helpful? Give feedback.
Answered by
maxcountryman
Jan 14, 2024
Replies: 1 comment
-
Any Redis client may be used as a store. Simply implement the SessionStore trait with your preferred client. Alternatively, we've also used fred to implement a Redis session store (with the same trait) that can be used as well. Generally speaking, we very much encourage folks to implement their own session stores. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
HosMercury
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Any Redis client may be used as a store. Simply implement the SessionStore trait with your preferred client.
Alternatively, we've also used fred to implement a Redis session store (with the same trait) that can be used as well.
Generally speaking, we very much encourage folks to implement their own session stores.