fix SetOperations#randomMember operation

DATAREDIS-83
This commit is contained in:
Costin Leau
2012-03-29 17:36:17 +03:00
parent 1c08d225d9
commit 2cb4585565

View File

@@ -164,7 +164,7 @@ class DefaultSetOperations<K, V> extends AbstractOperations<K, V> implements Set
return execute(new ValueDeserializingRedisCallback(key) {
protected byte[] inRedis(byte[] rawKey, RedisConnection connection) {
return connection.randomKey();
return connection.sRandMember(rawKey);
}
}, true);
}