tags:

views:

85

answers:

2

Hello,

I'm planning to start using hashes insead of regular keys. But I can't find any information about multi get for hash-keys in Redis wiki. Is this kind of command is supported by Redis?

Thank you.

A: 

Redis has a HMGET command, which returns the values of several hash keys with one command.

Fabian Jakobs
Yeah, but HMGET will return multiple values of concrete fields, but I need return whole hashes (like HGETALL do http://code.google.com/p/redis/wiki/HgetallCommand). Anyway, thank you for your answer.
Kirzilla