Merge branch 'remove-pexpire-int' of https://github.com/aniketschneider/jedis into aniketschneider-remove-pexpire-int
Conflicts: src/main/java/redis/clients/jedis/Client.java
This commit is contained in:
@@ -1098,16 +1098,6 @@ abstract class PipelineBase extends Queable implements BinaryRedisPipeline,
|
||||
return getResponse(BuilderFactory.LONG);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public Response<Long> pexpire(String key, int milliseconds) {
|
||||
return pexpire(key, (long) milliseconds);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public Response<Long> pexpire(byte[] key, int milliseconds) {
|
||||
return pexpire(key, (long) milliseconds);
|
||||
}
|
||||
|
||||
public Response<Long> pexpire(String key, long milliseconds) {
|
||||
getClient(key).pexpire(key, milliseconds);
|
||||
return getResponse(BuilderFactory.LONG);
|
||||
|
||||
Reference in New Issue
Block a user