From 7fd2961737f0b23a3cdc1d7484a07efb3aa3f9df Mon Sep 17 00:00:00 2001 From: Alexander Demidov Date: Thu, 15 Aug 2013 17:21:47 +0400 Subject: [PATCH] sInter --- redis/redis.php | 1 + 1 file changed, 1 insertion(+) diff --git a/redis/redis.php b/redis/redis.php index a9877f0..3514a5f 100644 --- a/redis/redis.php +++ b/redis/redis.php @@ -61,6 +61,7 @@ * @method array lRange() lRange(string $key, int $start, int $end) Returns the specified elements of the list stored at the specified key in the range [start, end]. start and stop are interpretated as indices: 0 the first element, 1 the second ... -1 the last element, -2 the penultimate * @method int rPush() rPush(string $key, string $value) Adds the string value to the tail (right) of the list. Creates the list if the key didn't exist. If the key exists and is not a list, FALSE is returned. * @method array lTrim() lTrim(string $key, int $start, int $stop) Trims an existing list so that it will contain only a specified range of elements. + * @method array sInter */ class Redis {