20:37:36 GMT I have a sorted set of hash keys, and I want to return two fields from those hashes. is it faster to so a SORT messages:123 BY NOSORT GET message:*->username GET message:*->text LIMIT 0 25 or to do a ZRANGE messages:123 0 25, and then use a pipeline to do a HMGET message:xxxxxxxx username text 20:46:18 GMT SORT is almost certainly faster, since it requires no extra roundtrips through the socket 20:46:44 GMT disclaimer: i didn't know that you could use SORT for stuff like that until just now 20:47:58 GMT but just write a little benchmark to see if there's a difference, kingsob 21:06:48 GMT yeah I figure thats the best bet 22:32:03 GMT Does anyone know why yum install redis does not register redis-sentinel as a service? 23:04:19 GMT redis-sentinel 23:04:22 GMT is the service name 23:04:24 GMT intresting