Merge branch 'master' of github.com:xetorthio/jedis

This commit is contained in:
Marcos Nils
2014-05-25 15:23:59 -03:00
6 changed files with 40 additions and 3 deletions

View File

@@ -3324,7 +3324,12 @@ public class BinaryJedis implements BasicCommands, BinaryJedisCommands,
return client.getStatusCodeReply();
}
@Deprecated
public Long pexpire(final byte[] key, final int milliseconds) {
return pexpire(key, (long) milliseconds);
}
public Long pexpire(final byte[] key, final long milliseconds) {
checkIsInMulti();
client.pexpire(key, milliseconds);
return client.getIntegerReply();