mirror of
https://github.com/phpredis/phpredis.git
synced 2026-06-19 07:35:31 +00:00
Docs: Update generated API documentation
This commit is contained in:
committed by
Michael Grunder
parent
10b77a42d6
commit
df243455e6
+128
-36
@@ -3428,7 +3428,7 @@ command that does much the same thing but does not require passing specific IDs
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-2 type">
|
||||
Relay|array|false
|
||||
Redis|array|false
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<a href="#method_xdelex">xdelex</a>(string $key, array $ids, string|null $mode = null)
|
||||
@@ -3646,6 +3646,16 @@ acknowledged with XACK.</p></p> </div>
|
||||
|
||||
<p><p>Get any adajcent values for a member of a vector set.</p></p> </div>
|
||||
<div class="col-md-2"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-2 type">
|
||||
Redis|array|false
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<a href="#method_gcra">gcra</a>(string $key, int $maxBurst, int $requestsPerPeriod, int $period, int $numRequests = 0)
|
||||
|
||||
<p><p>Get rate limiting information</p></p> </div>
|
||||
<div class="col-md-2"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-2 type">
|
||||
@@ -20985,7 +20995,7 @@ var_dump($pending);</pre></td>
|
||||
|
||||
<h3 id="method_xdelex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L4861">at line 4861</a></div>
|
||||
<code class="method-signature language-php">Relay|array|false xdelex(string $key, array $ids, string|null $mode = null)</code>
|
||||
<code class="method-signature language-php">Redis|array|false xdelex(string $key, array $ids, string|null $mode = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
|
||||
@@ -21022,7 +21032,7 @@ are as follows: KEEPREF | DELREF | ACKED</p></td>
|
||||
<div class="return-value-content">
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>Relay|array|false</td>
|
||||
<td>Redis|array|false</td>
|
||||
<td><p>An array corresponding to IDs. 1 if the id was
|
||||
deleted and 0 if not.</p></td>
|
||||
</tr>
|
||||
@@ -22656,8 +22666,90 @@ will be json encoded.</p></td>
|
||||
</div>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_gcra">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5287">at line 5287</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false gcra(string $key, int $maxBurst, int $requestsPerPeriod, int $period, int $numRequests = 0)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
|
||||
|
||||
|
||||
<div class="method-description">
|
||||
<p><p>Get rate limiting information</p></p>
|
||||
</div>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$key</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$maxBurst</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$requestsPerPeriod</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$period</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$numRequests</td>
|
||||
<td><p>= 0</p></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4 class="return-value-header">Return Value</h4>
|
||||
|
||||
<div class="return-value-content">
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>Redis|array|false</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<h4>See also</h4>
|
||||
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://redis.io/docs/latest/commands/gcra/">https://redis.io/docs/latest/commands/gcra/</a>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4>Examples</h4>
|
||||
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td><pre class="examples">$redis->gcra('user:123', 10, 100, 3600);</pre></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xtrim">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5292">at line 5292</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5311">at line 5311</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false xtrim(string $key, string $threshold, bool $approx = false, bool $minid = false, int $limit = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -22746,7 +22838,7 @@ more efficient for Redis given how streams are stored internally.</p></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zAdd">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5333">at line 5333</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5352">at line 5352</a></div>
|
||||
<code class="method-signature language-php">Redis|int|float|false zAdd(string $key, array|float $score_or_options, mixed ...$more_scores_and_mems)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -22840,7 +22932,7 @@ $redis->zAdd('zs', ['XX'], 8, 'second', 99, �
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zCard">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5346">at line 5346</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5365">at line 5365</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zCard(string $key)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -22902,7 +22994,7 @@ $redis->zAdd('zs', ['XX'], 8, 'second', 99, �
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zCount">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5365">at line 5365</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5384">at line 5384</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zCount(string $key, int|string $start, int|string $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -22978,7 +23070,7 @@ $redis->zCount('fruit-rankings', '-inf', 0);</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zIncrBy">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5381">at line 5381</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5400">at line 5400</a></div>
|
||||
<code class="method-signature language-php">Redis|float|false zIncrBy(string $key, float $value, mixed $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23051,7 +23143,7 @@ $redis->zIncrBy('zs', 2.0, 'eggplants');</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zLexCount">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5399">at line 5399</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5418">at line 5418</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zLexCount(string $key, string $min, string $max)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23125,7 +23217,7 @@ $redis->zLexCount('captains', '[A', '[S');</pre
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zMscore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5418">at line 5418</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5437">at line 5437</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zMscore(string $key, mixed $member, mixed ...$other_members)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23200,7 +23292,7 @@ $redis->zMScore('zs', 'one', 'not-a-member');</
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zPopMax">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5436">at line 5436</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5455">at line 5455</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zPopMax(string $key, int|null $count = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23270,7 +23362,7 @@ $redis->zPopMax('zs', 2);.</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zPopMin">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5454">at line 5454</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5473">at line 5473</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zPopMin(string $key, int|null $count = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23340,7 +23432,7 @@ $redis->zPopMin('zs', 2);</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRange">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5490">at line 5490</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5509">at line 5509</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zRange(string $key, string|int $start, string|int $end, array|bool|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23429,7 +23521,7 @@ $redis->zRange('zset', '-inf', 'inf', ['by
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRangeByLex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5512">at line 5512</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5531">at line 5531</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zRangeByLex(string $key, string $min, string $max, int $offset = -1, int $count = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23515,7 +23607,7 @@ $redis->zRangeByLex('captains', '[A', '[S', 2,
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRangeByScore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5534">at line 5534</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5553">at line 5553</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zRangeByScore(string $key, string $start, string $end, array $options = [])</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23596,7 +23688,7 @@ $redis->zRangeByScore('zs', 20, 30, ['WITHSCORES' => t
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrangestore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5558">at line 5558</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5577">at line 5577</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zrangestore(string $dstkey, string $srckey, string $start, string $end, array|bool|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23685,7 +23777,7 @@ it will store them in a destination key provided by the user</p></p>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRandMember">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5577">at line 5577</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5596">at line 5596</a></div>
|
||||
<code class="method-signature language-php">Redis|string|array zRandMember(string $key, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23755,7 +23847,7 @@ OPTION TYPE MEANING
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRank">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5592">at line 5592</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5611">at line 5611</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zRank(string $key, mixed $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23823,7 +23915,7 @@ $redis->zRank('zs', 'three');</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRem">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5608">at line 5608</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5627">at line 5627</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zRem(mixed $key, mixed $member, mixed ...$other_members)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23895,7 +23987,7 @@ $redis->zRank('zs', 'three');</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRemRangeByLex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5626">at line 5626</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5645">at line 5645</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zRemRangeByLex(string $key, string $min, string $max)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -23974,7 +24066,7 @@ $redis->zRemRangeByLex('zs', '(banana', '(eggplant&#
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRemRangeByRank">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5642">at line 5642</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5661">at line 5661</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zRemRangeByRank(string $key, int $start, int $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24046,7 +24138,7 @@ $redis->zRemRangeByLex('zs', '(banana', '(eggplant&#
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRemRangeByScore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5659">at line 5659</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5678">at line 5678</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zRemRangeByScore(string $key, string $start, string $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24119,7 +24211,7 @@ $redis->zRemRangeByScore('zs', 2, 4);</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRevRange">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5681">at line 5681</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5700">at line 5700</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zRevRange(string $key, int $start, int $end, mixed $scores = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24201,7 +24293,7 @@ $redis->zRevRange('zs', 0, -1, ['withscores' => true])
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRevRangeByLex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5701">at line 5701</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5720">at line 5720</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zRevRangeByLex(string $key, string $max, string $min, int $offset = -1, int $count = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24290,7 +24382,7 @@ $redis->zRevRangeByLex('captains', '[Q', '[J',
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRevRangeByScore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5736">at line 5736</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5755">at line 5755</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zRevRangeByScore(string $key, string $max, string $min, array|bool $options = [])</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24381,7 +24473,7 @@ $redis->zRevRangeByScore('oldest-people', '117.5', '
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zRevRank">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5754">at line 5754</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5773">at line 5773</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zRevRank(string $key, mixed $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24452,7 +24544,7 @@ $redis->zrevrank('ds9-characters', 'Garak');</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zScore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5770">at line 5770</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5789">at line 5789</a></div>
|
||||
<code class="method-signature language-php">Redis|float|false zScore(string $key, mixed $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24520,7 +24612,7 @@ $redis->zScore('telescopes', 'LBT');</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zdiff">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5791">at line 5791</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5810">at line 5810</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zdiff(array $keys, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24593,7 +24685,7 @@ $redis->zDiff(['primes', 'evens', 'mod3']);</pr
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zdiffstore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5811">at line 5811</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5830">at line 5830</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zdiffstore(string $dst, array $keys)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24668,7 +24760,7 @@ Redis::zdiff</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zinter">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5834">at line 5834</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5853">at line 5853</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zinter(array $keys, array|null $weights = null, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24747,7 +24839,7 @@ $redis->zInter(['TNG', 'DS9'], NULL, ['withscores�
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zintercard">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5857">at line 5857</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5876">at line 5876</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zintercard(array $keys, int $limit = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24833,7 +24925,7 @@ $redis->zInterCard(['zs1', 'zs2']);</pre></td>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zinterstore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5883">at line 5883</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5902">at line 5902</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zinterstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -24924,7 +25016,7 @@ $redis->zInterStore('fruit-max', ['zs1', 'zs2',
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zscan">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5915">at line 5915</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5934">at line 5934</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -25024,7 +25116,7 @@ while ($members = $redis->zscan('leaders', $it)) {
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zunion">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5952">at line 5952</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5971">at line 5971</a></div>
|
||||
<code class="method-signature language-php">Redis|array|false zunion(array $keys, array|null $weights = null, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -25114,7 +25206,7 @@ $redis->zUnion(['store1', 'store3'], [2, .5], ['with
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zunionstore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5975">at line 5975</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5994">at line 5994</a></div>
|
||||
<code class="method-signature language-php">Redis|int|false zunionstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -25203,7 +25295,7 @@ $redis->zUnionStore('dst', ['zs1', 'zs2', '
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_digest">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L5989">at line 5989</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis.stub.php#L6008">at line 6008</a></div>
|
||||
<code class="method-signature language-php">Redis|string|false digest(string $key)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
|
||||
+519
-279
File diff suppressed because it is too large
Load Diff
+137
-50
@@ -2885,6 +2885,17 @@ to that section.</p></p> </div>
|
||||
<div class="col-md-2"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-2 type">
|
||||
RedisCluster|array|false
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<a href="#method_gcra">gcra</a>(string $key, int $maxBurst, int $requestsPerPeriod, int $period, int $numRequests = 0)
|
||||
|
||||
<p class="no-description">No description</p>
|
||||
</div>
|
||||
<div class="col-md-2"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-2 type">
|
||||
RedisCluster|int|false
|
||||
</div>
|
||||
@@ -2930,7 +2941,7 @@ to that section.</p></p> </div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-2 type">
|
||||
Relay|array|false
|
||||
RedisCluster|array|false
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<a href="#method_xdelex">xdelex</a>(string $key, array $ids, string|null $mode = null)
|
||||
@@ -16582,8 +16593,84 @@ Redis::vsetattr</a>
|
||||
</div>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xack">
|
||||
<h3 id="method_gcra">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1187">at line 1187</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false gcra(string $key, int $maxBurst, int $requestsPerPeriod, int $period, int $numRequests = 0)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
|
||||
|
||||
|
||||
<div class="method-description">
|
||||
<p class="no-description">No description</p>
|
||||
|
||||
</div>
|
||||
<div class="tags">
|
||||
<h4>Parameters</h4>
|
||||
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>string</td>
|
||||
<td>$key</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$maxBurst</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$requestsPerPeriod</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$period</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>int</td>
|
||||
<td>$numRequests</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h4 class="return-value-header">Return Value</h4>
|
||||
|
||||
<div class="return-value-content">
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>RedisCluster|array|false</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<h4>See also</h4>
|
||||
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="Redis.html#method_gcra">
|
||||
Redis::gcra</a>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xack">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1194">at line 1194</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false xack(string $key, string $group, array $ids)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -16649,7 +16736,7 @@ Redis::xack</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xadd">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1192">at line 1192</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1199">at line 1199</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|string|false xadd(string $key, string $id, array $values, int $maxlen = 0, bool $approx = false)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -16725,7 +16812,7 @@ Redis::xadd</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xclaim">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1197">at line 1197</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1204">at line 1204</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|string|array|false xclaim(string $key, string $group, string $consumer, int $min_iddle, array $ids, array $options)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -16806,7 +16893,7 @@ Redis::xclaim</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xdel">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1202">at line 1202</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1209">at line 1209</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false xdel(string $key, array $ids)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -16867,8 +16954,8 @@ Redis::xdel</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xdelex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1207">at line 1207</a></div>
|
||||
<code class="method-signature language-php">Relay|array|false xdelex(string $key, array $ids, string|null $mode = null)</code>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1214">at line 1214</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false xdelex(string $key, array $ids, string|null $mode = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
|
||||
@@ -16905,7 +16992,7 @@ Redis::xdel</a>
|
||||
<div class="return-value-content">
|
||||
<table class="table table-condensed">
|
||||
<tr>
|
||||
<td>Relay|array|false</td>
|
||||
<td>RedisCluster|array|false</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -16933,7 +17020,7 @@ Redis::xdelex</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xgroup">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1212">at line 1212</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1219">at line 1219</a></div>
|
||||
<code class="method-signature language-php">mixed xgroup(string $operation, string|null $key = null, string|null $group = null, string|null $id_or_consumer = null, bool $mkstream = false, int $entries_read = -2)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17014,7 +17101,7 @@ Redis::xgroup</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xautoclaim">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1218">at line 1218</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1225">at line 1225</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array xautoclaim(string $key, string $group, string $consumer, int $min_idle, string $start, int $count = -1, bool $justid = false)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17100,7 +17187,7 @@ Redis::xautoclaim</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xinfo">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1223">at line 1223</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1230">at line 1230</a></div>
|
||||
<code class="method-signature language-php">mixed xinfo(string $operation, string|null $arg1 = null, string|null $arg2 = null, int $count = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17171,7 +17258,7 @@ Redis::xinfo</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xlen">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1228">at line 1228</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1235">at line 1235</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false xlen(string $key)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17227,7 +17314,7 @@ Redis::xlen</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xpending">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1233">at line 1233</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1240">at line 1240</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false xpending(string $key, string $group, string|null $start = null, string|null $end = null, int $count = -1, string|null $consumer = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17308,7 +17395,7 @@ Redis::xpending</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xrange">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1238">at line 1238</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1245">at line 1245</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array xrange(string $key, string $start, string $end, int $count = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17379,7 +17466,7 @@ Redis::xrange</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xread">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1243">at line 1243</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1250">at line 1250</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array xread(array $streams, int $count = -1, int $block = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17445,7 +17532,7 @@ Redis::xread</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xreadgroup">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1248">at line 1248</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1255">at line 1255</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array xreadgroup(string $group, string $consumer, array $streams, int $count = 1, int $block = 1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17521,7 +17608,7 @@ Redis::xreadgroup</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xrevrange">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1253">at line 1253</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1260">at line 1260</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array xrevrange(string $key, string $start, string $end, int $count = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17592,7 +17679,7 @@ Redis::xrevrange</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_xtrim">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1258">at line 1258</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1265">at line 1265</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false xtrim(string $key, int $maxlen, bool $approx = false, bool $minid = false, int $limit = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17668,7 +17755,7 @@ Redis::xtrim</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zadd">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1263">at line 1263</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1270">at line 1270</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|float|false zadd(string $key, array|float $score_or_options, mixed ...$more_scores_and_mems)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17734,7 +17821,7 @@ Redis::zAdd</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zcard">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1268">at line 1268</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1275">at line 1275</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zcard(string $key)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17790,7 +17877,7 @@ Redis::zCard</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zcount">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1273">at line 1273</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1280">at line 1280</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zcount(string $key, string $start, string $end)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17856,7 +17943,7 @@ Redis::zCount</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zincrby">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1278">at line 1278</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1285">at line 1285</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|float|false zincrby(string $key, float $value, string $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17922,7 +18009,7 @@ Redis::zIncrBy</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zinterstore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1283">at line 1283</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1290">at line 1290</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zinterstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -17993,7 +18080,7 @@ Redis::zinterstore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zintercard">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1288">at line 1288</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1295">at line 1295</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zintercard(array $keys, int $limit = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18054,7 +18141,7 @@ Redis::zintercard</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zlexcount">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1293">at line 1293</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1300">at line 1300</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zlexcount(string $key, string $min, string $max)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18120,7 +18207,7 @@ Redis::zLexCount</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zpopmax">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1298">at line 1298</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1305">at line 1305</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array zpopmax(string $key, int|null $value = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18181,7 +18268,7 @@ Redis::zPopMax</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zpopmin">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1303">at line 1303</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1310">at line 1310</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array zpopmin(string $key, int|null $value = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18242,7 +18329,7 @@ Redis::zPopMin</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrange">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1308">at line 1308</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1315">at line 1315</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|bool zrange(string $key, mixed $start, mixed $end, array|bool|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18313,7 +18400,7 @@ Redis::zRange</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrangestore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1313">at line 1313</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1320">at line 1320</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zrangestore(string $dstkey, string $srckey, int $start, int $end, array|bool|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18389,7 +18476,7 @@ Redis::zrangestore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrandmember">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1319">at line 1319</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1326">at line 1326</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|string|array zrandmember(string $key, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18449,7 +18536,7 @@ Redis::zrangestore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrangebylex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1324">at line 1324</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1331">at line 1331</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false zrangebylex(string $key, string $min, string $max, int $offset = -1, int $count = -1)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18525,7 +18612,7 @@ Redis::zRangeByLex</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrangebyscore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1329">at line 1329</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1336">at line 1336</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false zrangebyscore(string $key, string $start, string $end, array $options = [])</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18596,7 +18683,7 @@ Redis::zRangeByScore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrank">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1334">at line 1334</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1341">at line 1341</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zrank(string $key, mixed $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18657,7 +18744,7 @@ Redis::zRank</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrem">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1339">at line 1339</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1346">at line 1346</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zrem(string $key, string $value, string ...$other_values)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18723,7 +18810,7 @@ Redis::zRem</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zremrangebylex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1344">at line 1344</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1351">at line 1351</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zremrangebylex(string $key, string $min, string $max)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18789,7 +18876,7 @@ Redis::zRemRangeByLex</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zremrangebyrank">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1349">at line 1349</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1356">at line 1356</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zremrangebyrank(string $key, string $min, string $max)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18855,7 +18942,7 @@ Redis::zRemRangeByRank</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zremrangebyscore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1354">at line 1354</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1361">at line 1361</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zremrangebyscore(string $key, string $min, string $max)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18921,7 +19008,7 @@ Redis::zRemRangeByScore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrevrange">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1359">at line 1359</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1366">at line 1366</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array zrevrange(string $key, string $min, string $max, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -18992,7 +19079,7 @@ Redis::zRevRange</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrevrangebylex">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1364">at line 1364</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1371">at line 1371</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array zrevrangebylex(string $key, string $min, string $max, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19063,7 +19150,7 @@ Redis::zRevRangeByLex</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrevrangebyscore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1369">at line 1369</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1376">at line 1376</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array zrevrangebyscore(string $key, string $min, string $max, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19134,7 +19221,7 @@ Redis::zRevRangeByScore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zrevrank">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1374">at line 1374</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1381">at line 1381</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zrevrank(string $key, mixed $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19195,7 +19282,7 @@ Redis::zRevRank</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zscan">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1379">at line 1379</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1386">at line 1386</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|bool|array zscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19266,7 +19353,7 @@ Redis::zscan</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zscore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1384">at line 1384</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1391">at line 1391</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|float|false zscore(string $key, mixed $member)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19327,7 +19414,7 @@ Redis::zScore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zmscore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1389">at line 1389</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1396">at line 1396</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false zmscore(string $key, mixed $member, mixed ...$other_members)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19392,7 +19479,7 @@ Redis::zScore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zunionstore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1394">at line 1394</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1401">at line 1401</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zunionstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19463,7 +19550,7 @@ Redis::zunionstore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zinter">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1399">at line 1399</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1406">at line 1406</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false zinter(array $keys, array|null $weights = null, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19528,7 +19615,7 @@ Redis::zunionstore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zdiffstore">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1404">at line 1404</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1411">at line 1411</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|int|false zdiffstore(string $dst, array $keys)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19588,7 +19675,7 @@ Redis::zunionstore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zunion">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1409">at line 1409</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1416">at line 1416</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false zunion(array $keys, array|null $weights = null, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19653,7 +19740,7 @@ Redis::zunionstore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_zdiff">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1414">at line 1414</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1421">at line 1421</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|array|false zdiff(array $keys, array|null $options = null)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
@@ -19713,7 +19800,7 @@ Redis::zunionstore</a>
|
||||
<div class="method-item">
|
||||
|
||||
<h3 id="method_digest">
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1419">at line 1419</a></div>
|
||||
<div class="location"><a href="https://github.com/phpredis/phpredis/blob/develop/redis_cluster.stub.php#L1426">at line 1426</a></div>
|
||||
<code class="method-signature language-php">RedisCluster|string|false digest(string $key)</code>
|
||||
</h3>
|
||||
<div class="details">
|
||||
|
||||
+13
-1
@@ -687,12 +687,16 @@ RedisArray::debug</a>() — <em>Method in class <a href="RedisArray.html">Re
|
||||
RedisArray::decr</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_decrBy">
|
||||
RedisArray::decrBy</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_delex">
|
||||
RedisArray::delex</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_delifeq">
|
||||
RedisArray::delifeq</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_delete">
|
||||
RedisArray::delete</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_dump">
|
||||
RedisArray::dump</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_digest">
|
||||
RedisArray::digest</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisCluster.html#method_dbsize">
|
||||
RedisCluster::dbsize</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisCluster.html#method_decr">
|
||||
@@ -883,7 +887,9 @@ Redis::getset</a>() — <em>Method in class <a href="Redis.html">Redis</a></
|
||||
Redis::getTimeout</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
|
||||
<dd><p>Retrieve any set connection timeout</p></dd><dt><a href="Redis.html#method_getTransferredBytes">
|
||||
Redis::getTransferredBytes</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
|
||||
<dd><p>Get the number of bytes sent and received on the socket.</p></dd><dt><a href="RedisArray.html#method_getOption">
|
||||
<dd><p>Get the number of bytes sent and received on the socket.</p></dd><dt><a href="Redis.html#method_gcra">
|
||||
Redis::gcra</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
|
||||
<dd><p>Get rate limiting information</p></dd><dt><a href="RedisArray.html#method_getOption">
|
||||
RedisArray::getOption</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_geoadd">
|
||||
RedisArray::geoadd</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
@@ -981,6 +987,8 @@ RedisCluster::getrange</a>() — <em>Method in class <a href="RedisCluster.h
|
||||
RedisCluster::getset</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisCluster.html#method_gettransferredbytes">
|
||||
RedisCluster::gettransferredbytes</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisCluster.html#method_gcra">
|
||||
RedisCluster::gcra</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisSentinel.html#method_getMasterAddrByName">
|
||||
RedisSentinel::getMasterAddrByName</a>() — <em>Method in class <a href="RedisSentinel.html">RedisSentinel</a></em></dt>
|
||||
<dd></dd> </dl><h2 id="letterH">H</h2>
|
||||
@@ -1309,6 +1317,8 @@ RedisArray::mset</a>() — <em>Method in class <a href="RedisArray.html">Red
|
||||
RedisArray::multi</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_move">
|
||||
RedisArray::move</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_msetex">
|
||||
RedisArray::msetex</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_msetnx">
|
||||
RedisArray::msetnx</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisCluster.html#method_mget">
|
||||
@@ -1959,6 +1969,8 @@ RedisArray::xautoclaim</a>() — <em>Method in class <a href="RedisArray.htm
|
||||
RedisArray::xclaim</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_xdel">
|
||||
RedisArray::xdel</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_xdelex">
|
||||
RedisArray::xdelex</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_xinfo">
|
||||
RedisArray::xinfo</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
|
||||
<dd></dd><dt><a href="RedisArray.html#method_xlen">
|
||||
|
||||
File diff suppressed because one or more lines are too long
+1
-1
@@ -1 +1 @@
|
||||
O:21:"Doctum\Renderer\Index":3:{i:0;a:6:{s:5:"Redis";s:40:"c13469df88b1bee8129ccab19c2f18a44e545203";s:10:"RedisArray";s:40:"2a50f02b4f62d96a18ec122fec35bd6e03bf735a";s:12:"RedisCluster";s:40:"7e9d3dfcff35ee57a08e11e78e30b24a58d7d008";s:21:"RedisClusterException";s:40:"7e9d3dfcff35ee57a08e11e78e30b24a58d7d008";s:14:"RedisException";s:40:"c13469df88b1bee8129ccab19c2f18a44e545203";s:13:"RedisSentinel";s:40:"ca40579af888c5bb0661cd0201d840297474479a";}i:1;a:1:{i:0;s:7:"develop";}i:2;a:1:{i:0;s:0:"";}}
|
||||
O:21:"Doctum\Renderer\Index":3:{i:0;a:6:{s:5:"Redis";s:40:"190c8ed87be2064ed4cb1c7305576576af10afc6";s:10:"RedisArray";s:40:"1293a0ccef1e700da87d9ace76c3a05d91c0ffc7";s:12:"RedisCluster";s:40:"d0720357eca4c563bbd5211bbfbfc6f5a00c4b72";s:21:"RedisClusterException";s:40:"d0720357eca4c563bbd5211bbfbfc6f5a00c4b72";s:14:"RedisException";s:40:"190c8ed87be2064ed4cb1c7305576576af10afc6";s:13:"RedisSentinel";s:40:"ca40579af888c5bb0661cd0201d840297474479a";}i:1;a:1:{i:0;s:7:"develop";}i:2;a:1:{i:0;s:0:"";}}
|
||||
Reference in New Issue
Block a user