Update lib/Resque/Redis.php

Add SETEX to the list of commands which supply a key as the first argument.
This commit is contained in:
Daniel Hunsaker 2013-01-11 13:40:39 -07:00
parent 5fdc3609e9
commit 5127aefa90

View File

@ -33,6 +33,7 @@ class Resque_Redis extends Redisent
'ttl', 'ttl',
'move', 'move',
'set', 'set',
'setex',
'get', 'get',
'getset', 'getset',
'setnx', 'setnx',
@ -129,4 +130,4 @@ class Resque_Redis extends Redisent
return $string; return $string;
} }
} }
?> ?>