mirror of
https://github.com/predis/predis.git
synced 2026-09-14 20:37:29 +00:00
added zrevrangebylex in the list of available methods
This commit is contained in:
@@ -7,3 +7,4 @@ package.xml
|
||||
composer.lock
|
||||
experiments/
|
||||
vendor/
|
||||
.idea/
|
||||
@@ -121,6 +121,7 @@ use Predis\Command\CommandInterface;
|
||||
* @method $this zscore($key, $member)
|
||||
* @method $this zscan($key, $cursor, array $options = null)
|
||||
* @method $this zrangebylex($key, $start, $stop, array $options = null)
|
||||
* @method $this zrevrangebylex($key, $start, $stop, array $options = null)
|
||||
* @method $this zremrangebylex($key, $min, $max)
|
||||
* @method $this zlexcount($key, $min, $max)
|
||||
* @method $this pfadd($key, array $elements)
|
||||
|
||||
@@ -129,6 +129,7 @@ use Predis\Profile\ProfileInterface;
|
||||
* @method string zscore($key, $member)
|
||||
* @method array zscan($key, $cursor, array $options = null)
|
||||
* @method array zrangebylex($key, $start, $stop, array $options = null)
|
||||
* @method array zrevrangebylex($key, $start, $stop, array $options = null)
|
||||
* @method int zremrangebylex($key, $min, $max)
|
||||
* @method int zlexcount($key, $min, $max)
|
||||
* @method int pfadd($key, array $elements)
|
||||
|
||||
@@ -11,6 +11,11 @@
|
||||
|
||||
namespace Predis\Command;
|
||||
|
||||
/**
|
||||
* @link http://redis.io/commands/zrevrangebylex
|
||||
*
|
||||
* @author Daniele Alessandri <suppakilla@gmail.com>
|
||||
*/
|
||||
class ZSetReverseRangeByLex extends ZSetRangeByLex
|
||||
{
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user