I am new to Redis and started playing with it.
I have a rails app where unauthenticated users can put newspaper articles as favorites, so they could read them later. What I have been doing until now is storing the favorites in cookies.
But I would like to achieve the same with Redis.There is the command lset
. What I don't understand is if this list will be unique to each visitor or common to everyone.