Hi guys,
I just read the "Flexible session management" part of this Redis official post:
This is totally true:
Sessions are traditionally modeled as strings or hashes. While string serialization and deserialization offer a naive instant solution, session managers must extract and store the entire session from the database, causing extraneous data processing that leads to suboptimal performance and data transfer costs.
Storing session data as hashes represents a logical evolution.
What do you think about making those changes?
Thanks!
Hi guys,
I just read the "Flexible session management" part of this Redis official post:
This is totally true:
What do you think about making those changes?
Thanks!