-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
Description
If I use renameNx and rename a key to a key that is currently not existing the operation is performed well on Redis server. Nevertheless I get false as result from phpredis.
The follwing test fails:
$redis->set('oldkey', 'value');
$this->assertTrue(
$redis->renameNx('oldkey', 'newkey')
);