↧
Answer by Itamar Haber for How to store sorted set of objects in redis?
Using a single key to store all your hashes will require some serialization as Redis doesn't support nested data structures. The result would be the following: key: users:pro | +-----> field value...
View ArticleHow to store sorted set of objects in redis?
I would like to know how to store a list of objects in Redis. That is I have a key like this. users:pro { name: "Bruce", age: "20", score: 100, name: "Ed", age: "22", score: 80 } Where I will want to...
View Article