I am currently using memcached based session storage ( https://github.com/mperham/dalli ). From time to time, the memcached server is unavailable ("No access to the server"), and then my users can no longer use the application. Currently, I doubt that the memcached solution is the right solution.
Since I store very few keys in the session, I am thinking of going to the cookie store. Or should I use ActiveRecord storage? Any tips?
Thank!
lacco source
share