Quantcast
Channel: Getting multiple key values from Redis - Stack Overflow
Browsing latest articles
Browse All 3 View Live

Answer by Didier Spezia for Getting multiple key values from Redis

Doing a loop on the items and synchronously accessing each element is not very efficient. With Redis 2.4, there are various ways to do what you want: by using the sort command by using pipelining by...

View Article



Answer by Ofer Zelig for Getting multiple key values from Redis

You can use Redis' EVAL command to send it a Lua script that runs a loop "server side" and return the results in a block.

View Article

Getting multiple key values from Redis

I'm currently playing around with Redis and i've got a few questions. Is it possible to get values from an array of keys? Example: users:1:name "daniel" users:1:age "24" users:2:name "user2"...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images