Object commands are supported

This commit is contained in:
ivowiblo
2012-04-19 00:32:23 -04:00
parent be163acd52
commit d102ccf1b9
9 changed files with 136 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ package redis.clients.jedis;
import java.util.Map;
import redis.clients.jedis.BinaryClient.LIST_POSITION;
import redis.clients.util.SafeEncoder;
public interface Commands {
@@ -259,4 +260,10 @@ public interface Commands {
public void exec();
public void discard();
public void objectRefcount(String key);
public void objectIdletime(String key);
public void objectEncoding(String key);
}