-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathdoc-index.html
More file actions
2295 lines (2207 loc) · 189 KB
/
doc-index.html
File metadata and controls
2295 lines (2207 loc) · 189 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Index | PhpRedis API</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/doctum.css">
<link rel="stylesheet" type="text/css" href="fonts/doctum-font.css">
<script src="js/jquery-3.5.1.slim.min.js"></script>
<script async defer src="doctum.js"></script>
<script async defer src="js/bootstrap.min.js"></script>
<script async defer src="js/autocomplete.min.js"></script>
<meta name="MobileOptimized" content="width">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<link rel="stylesheet" type="text/css" href="css/highlight-github.min.css">
<script defer src="js/highlight.min.js"></script>
<script>
window.addEventListener('load', function () {
if (!window.hljs) {
return;
}
function ensureCustomClassesAreBuiltIn() {
var classesToAdd = ['Redis', 'RedisCluster', 'RedisArray'];
if (!hljs.getLanguage) {
return;
}
var phpLanguage = hljs.getLanguage('php');
if (!phpLanguage || !phpLanguage.keywords) {
return;
}
var builtIns = phpLanguage.keywords.built_in;
if (!builtIns) {
phpLanguage.keywords.built_in = classesToAdd.join(' ');
return;
}
if (Array.isArray(builtIns)) {
classesToAdd.forEach(function (className) {
if (builtIns.indexOf(className) === -1) {
builtIns.push(className);
}
});
return;
}
if (typeof builtIns === 'string') {
classesToAdd.forEach(function (className) {
if (builtIns.indexOf(className) === -1) {
builtIns += ' ' + className;
}
});
phpLanguage.keywords.built_in = builtIns;
}
}
function collectLinkMetadata(container, typeText) {
var anchors = container.querySelectorAll('a');
var lastIndex = 0;
var meta = [];
for (var i = 0; i < anchors.length; i++) {
var anchor = anchors[i];
var text = anchor.textContent.trim();
if (!text) {
continue;
}
var href = anchor.getAttribute('href');
var start = typeText.indexOf(text, lastIndex);
if (start === -1) {
start = typeText.indexOf(text);
if (start === -1) {
continue;
}
}
meta.push({
start: start,
end: start + text.length,
href: href
});
lastIndex = start + text.length;
}
return meta;
}
function findTextPosition(container, targetIndex) {
var walker = document.createTreeWalker(
container,
NodeFilter.SHOW_TEXT,
null
);
var currentIndex = 0;
var currentNode;
while ((currentNode = walker.nextNode())) {
var nextIndex = currentIndex + currentNode.textContent.length;
if (targetIndex <= nextIndex) {
return {
node: currentNode,
offset: targetIndex - currentIndex
};
}
currentIndex = nextIndex;
}
return null;
}
function restoreLinks(codeElement, meta) {
var sorted = meta.slice().sort(function (a, b) {
return b.start - a.start;
});
for (var i = 0; i < sorted.length; i++) {
var info = sorted[i];
var startPos = findTextPosition(codeElement, info.start);
var endPos = findTextPosition(codeElement, info.end);
if (!startPos || !endPos) {
continue;
}
var range = document.createRange();
range.setStart(startPos.node, startPos.offset);
range.setEnd(endPos.node, endPos.offset);
var anchor = document.createElement('a');
anchor.setAttribute('href', info.href);
anchor.appendChild(range.extractContents());
range.insertNode(anchor);
range.detach();
}
}
function highlightAndRestore(codeElement, metadata) {
hljs.highlightElement(codeElement);
if (metadata && metadata.length) {
restoreLinks(codeElement, metadata);
}
}
ensureCustomClassesAreBuiltIn();
var exampleBlocks = document.querySelectorAll('pre.examples');
exampleBlocks.forEach(function (block) {
if (!block.dataset.language) {
block.dataset.language = 'php';
}
block.classList.add('language-php');
hljs.highlightElement(block);
});
var signatureBlocks = document.querySelectorAll('code.method-signature');
signatureBlocks.forEach(function (block) {
if (!block.classList.contains('language-php')) {
block.classList.add('language-php');
}
hljs.highlightElement(block);
});
var phpCodeBlocks = document.querySelectorAll('pre code.language-php');
phpCodeBlocks.forEach(function (block) {
if (block.classList.contains('method-signature')) {
return;
}
if (block.closest('pre.examples')) {
return;
}
if (block.parentElement && !block.parentElement.classList.contains('language-php')) {
block.parentElement.classList.add('language-php');
}
hljs.highlightElement(block);
});
highlightReturnTypes();
highlightMethodParameters();
highlightApiIndex();
function highlightReturnTypes() {
if (!document.createTreeWalker || !window.NodeFilter) {
return;
}
var containers = document.querySelectorAll('.return-value-content');
containers.forEach(function (container) {
var table = container.querySelector('table');
if (!table) {
return;
}
table.querySelectorAll('tr').forEach(function (row) {
var typeCell = row.querySelector('td');
if (!typeCell || typeCell.querySelector('code.return-type')) {
return;
}
var typeText = typeCell.textContent.trim();
if (!typeText) {
return;
}
var linkMeta = collectLinkMetadata(typeCell, typeText);
var code = document.createElement('code');
code.className = 'return-type language-php';
code.textContent = typeText;
typeCell.innerHTML = '';
typeCell.appendChild(code);
highlightAndRestore(code, linkMeta);
});
});
}
function highlightMethodParameters() {
if (!document.createTreeWalker || !window.NodeFilter) {
return;
}
var headings = document.querySelectorAll('.tags > h4');
headings.forEach(function (heading) {
if (!heading.textContent || heading.textContent.trim() !== 'Parameters') {
return;
}
var table = heading.nextElementSibling;
while (table && table.tagName !== 'TABLE') {
table = table.nextElementSibling;
}
if (!table) {
return;
}
table.querySelectorAll('tr').forEach(function (row) {
var cells = row.querySelectorAll('td');
if (!cells.length) {
return;
}
enhanceParameterCell(cells[0], 'parameter-type');
if (cells.length > 1) {
enhanceParameterCell(cells[1], 'parameter-name');
}
});
});
function enhanceParameterCell(cell, className) {
if (!cell || cell.querySelector('code.' + className)) {
return;
}
var cellText = cell.textContent.trim();
if (!cellText) {
return;
}
var meta = collectLinkMetadata(cell, cellText);
var code = document.createElement('code');
code.className = className + ' language-php';
code.textContent = cellText;
cell.innerHTML = '';
cell.appendChild(code);
highlightAndRestore(code, meta);
}
}
function highlightApiIndex() {
if (!document.createTreeWalker || !window.NodeFilter) {
return;
}
var potentialContainers = document.querySelectorAll('.container-fluid.underlined');
var containers = [];
var anchorSelector = '.row .col-md-8 > a[href^="#method_"]';
for (var i = 0; i < potentialContainers.length; i++) {
var candidate = potentialContainers[i];
if (!candidate.querySelector(anchorSelector)) {
continue;
}
var heading = candidate.previousElementSibling;
if (heading && heading.tagName === 'H2' && heading.textContent && heading.textContent.trim() === 'Methods') {
containers.push(candidate);
}
}
if (!containers.length) {
return;
}
for (var j = 0; j < containers.length; j++) {
var container = containers[j];
var rows = container.querySelectorAll('.row');
for (var k = 0; k < rows.length; k++) {
var row = rows[k];
enhanceTypeCell(row.querySelector('.col-md-2.type'));
enhanceSignatureCell(row.querySelector('.col-md-8'));
}
}
function enhanceTypeCell(typeCell) {
if (!typeCell || typeCell.querySelector('code.method-index-type')) {
return;
}
var typeText = typeCell.textContent.trim();
if (!typeText) {
return;
}
var meta = collectLinkMetadata(typeCell, typeText);
var code = document.createElement('code');
code.className = 'method-index-type language-php';
code.textContent = typeText;
typeCell.innerHTML = '';
typeCell.appendChild(code);
highlightAndRestore(code, meta);
}
function enhanceSignatureCell(signatureCell) {
if (!signatureCell || signatureCell.querySelector('code.method-index-signature')) {
return;
}
var descriptionStart = null;
for (var i = 0; i < signatureCell.children.length; i++) {
var child = signatureCell.children[i];
if (child.tagName === 'P') {
descriptionStart = child;
break;
}
}
var nodesToProcess = [];
var current = signatureCell.firstChild;
while (current && current !== descriptionStart) {
nodesToProcess.push(current);
current = current.nextSibling;
}
if (!nodesToProcess.length) {
return;
}
var signatureText = '';
for (var j = 0; j < nodesToProcess.length; j++) {
signatureText += nodesToProcess[j].textContent || '';
}
signatureText = signatureText.replace(/\s+/g, ' ').trim();
if (!signatureText) {
return;
}
var tempWrapper = document.createElement('div');
for (var k = 0; k < nodesToProcess.length; k++) {
tempWrapper.appendChild(nodesToProcess[k].cloneNode(true));
}
var meta = collectLinkMetadata(tempWrapper, signatureText);
for (var l = 0; l < nodesToProcess.length; l++) {
if (nodesToProcess[l].parentNode === signatureCell) {
signatureCell.removeChild(nodesToProcess[l]);
}
}
var code = document.createElement('code');
code.className = 'method-index-signature language-php';
code.textContent = signatureText;
signatureCell.insertBefore(code, descriptionStart);
highlightAndRestore(code, meta);
}
}
});
</script>
<link rel="search"
type="application/opensearchdescription+xml"
href="https://phpredis.github.io/opensearch.xml"
title="PhpRedis API (develop)" />
</head>
<body id="doc-index" data-name="" data-root-path="" data-search-index-url="doctum-search.json">
<div id="content">
<div id="left-column">
<div id="control-panel">
<div class="search-bar hidden" id="search-progress-bar-container">
<div class="progress">
<div class="progress-bar" role="progressbar" id="search-progress-bar"
aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%"></div>
</div>
</div>
<form id="search-form" action="search.html">
<span class="icon icon-search"></span>
<input name="search"
id="doctum-search-auto-complete"
class="typeahead form-control"
type="search"
placeholder="Search"
spellcheck="false"
autocorrect="off"
autocomplete="off"
autocapitalize="off">
<div class="auto-complete-results" id="auto-complete-results"></div>
</form>
</div>
<div id="api-tree"></div>
</div>
<div id="right-column">
<nav id="site-nav" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">PhpRedis API</a>
</div>
<div class="collapse navbar-collapse" id="navbar-elements">
<ul class="nav navbar-nav">
<li><a href="classes.html">Classes</a></li>
<li><a href="interfaces.html">Interfaces</a></li>
<li><a href="traits.html">Traits</a></li>
<li><a href="doc-index.html">Index</a></li>
<li><a href="search.html">Search</a></li>
</ul>
</div>
</div>
</nav>
<div id="page-content">
<div class="page-header">
<h1>Index</h1>
</div>
<ul class="pagination">
<li><a href="#letterA">A</a></li>
<li><a href="#letterB">B</a></li>
<li><a href="#letterC">C</a></li>
<li><a href="#letterD">D</a></li>
<li><a href="#letterE">E</a></li>
<li><a href="#letterF">F</a></li>
<li><a href="#letterG">G</a></li>
<li><a href="#letterH">H</a></li>
<li><a href="#letterI">I</a></li>
<li class="disabled"><a href="#letterJ">J</a></li>
<li><a href="#letterK">K</a></li>
<li><a href="#letterL">L</a></li>
<li><a href="#letterM">M</a></li>
<li class="disabled"><a href="#letterN">N</a></li>
<li><a href="#letterO">O</a></li>
<li><a href="#letterP">P</a></li>
<li class="disabled"><a href="#letterQ">Q</a></li>
<li><a href="#letterR">R</a></li>
<li><a href="#letterS">S</a></li>
<li><a href="#letterT">T</a></li>
<li><a href="#letterU">U</a></li>
<li><a href="#letterV">V</a></li>
<li><a href="#letterW">W</a></li>
<li><a href="#letterX">X</a></li>
<li class="disabled"><a href="#letterY">Y</a></li>
<li><a href="#letterZ">Z</a></li>
</ul>
<h2 id="letterA">A</h2>
<dl id="indexA"><dt><a href="Redis.html#method_acl">
Redis::acl</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute Redis ACL subcommands.</p></dd><dt><a href="Redis.html#method_append">
Redis::append</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Append data to a Redis STRING key.</p></dd><dt><a href="Redis.html#method_auth">
Redis::auth</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Authenticate a Redis connection after its been established.</p></dd><dt><a href="RedisArray.html#method_acl">
RedisArray::acl</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_append">
RedisArray::append</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_auth">
RedisArray::auth</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_acl">
RedisCluster::acl</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_append">
RedisCluster::append</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd> </dl><h2 id="letterB">B</h2>
<dl id="indexB"><dt><a href="Redis.html#method_bgSave">
Redis::bgSave</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute a save of the Redis database in the background.</p></dd><dt><a href="Redis.html#method_bgrewriteaof">
Redis::bgrewriteaof</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Asynchronously rewrite Redis' append-only file</p></dd><dt><a href="Redis.html#method_bitcount">
Redis::bitcount</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Count the number of set bits in a Redis string.</p></dd><dt><a href="Redis.html#method_bitop">
Redis::bitop</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd></dd><dt><a href="Redis.html#method_bitpos">
Redis::bitpos</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Return the position of the first bit set to 0 or 1 in a string.</p></dd><dt><a href="Redis.html#method_blPop">
Redis::blPop</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Pop an element off the beginning of a Redis list or lists, potentially blocking up to a specified
timeout. This method may be called in two distinct ways, of which examples are provided below.</p></dd><dt><a href="Redis.html#method_brPop">
Redis::brPop</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Pop an element off of the end of a Redis list or lists, potentially blocking up to a specified timeout.</p></dd><dt><a href="Redis.html#method_brpoplpush">
Redis::brpoplpush</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Pop an element from the end of a Redis list, pushing it to the beginning of another Redis list,
optionally blocking up to a specified timeout.</p></dd><dt><a href="Redis.html#method_bzPopMax">
Redis::bzPopMax</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>POP the maximum scoring element off of one or more sorted sets, blocking up to a specified
timeout if no elements are available.</p></dd><dt><a href="Redis.html#method_bzPopMin">
Redis::bzPopMin</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>POP the minimum scoring element off of one or more sorted sets, blocking up to a specified timeout
if no elements are available</p></dd><dt><a href="Redis.html#method_bzmpop">
Redis::bzmpop</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>POP one or more elements from one or more sorted sets, blocking up to a specified amount of time
when no elements are available.</p></dd><dt><a href="Redis.html#method_blmpop">
Redis::blmpop</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Pop one or more elements from one or more Redis LISTs, blocking up to a specified timeout when
no elements are available.</p></dd><dt><a href="Redis.html#method_blmove">
Redis::blmove</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bgsave">
RedisArray::bgsave</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bgrewriteaof">
RedisArray::bgrewriteaof</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bitcount">
RedisArray::bitcount</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bitop">
RedisArray::bitop</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bitpos">
RedisArray::bitpos</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_blPop">
RedisArray::blPop</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_brPop">
RedisArray::brPop</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_brpoplpush">
RedisArray::brpoplpush</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bzPopMax">
RedisArray::bzPopMax</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bzPopMin">
RedisArray::bzPopMin</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_bzmpop">
RedisArray::bzmpop</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_blmpop">
RedisArray::blmpop</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_blmove">
RedisArray::blmove</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_bgrewriteaof">
RedisCluster::bgrewriteaof</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_bgsave">
RedisCluster::bgsave</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_bitcount">
RedisCluster::bitcount</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_bitop">
RedisCluster::bitop</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_bitpos">
RedisCluster::bitpos</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd><p>Return the position of the first bit set to 0 or 1 in a string.</p></dd><dt><a href="RedisCluster.html#method_blpop">
RedisCluster::blpop</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_brpop">
RedisCluster::brpop</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_brpoplpush">
RedisCluster::brpoplpush</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_blmove">
RedisCluster::blmove</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd><p>Move an element from one list to another, blocking up to a timeout until an element is available.</p></dd><dt><a href="RedisCluster.html#method_bzpopmax">
RedisCluster::bzpopmax</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_bzpopmin">
RedisCluster::bzpopmin</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_bzmpop">
RedisCluster::bzmpop</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_blmpop">
RedisCluster::blmpop</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd> </dl><h2 id="letterC">C</h2>
<dl id="indexC"><dt><a href="Redis.html#method_clearLastError">
Redis::clearLastError</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Reset any last error on the connection to NULL</p></dd><dt><a href="Redis.html#method_client">
Redis::client</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute Redis CLIENT subcommands.</p></dd><dt><a href="Redis.html#method_close">
Redis::close</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Closes the connection to Redis</p></dd><dt><a href="Redis.html#method_command">
Redis::command</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute Redis COMMAND subcommands.</p></dd><dt><a href="Redis.html#method_config">
Redis::config</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute the Redis CONFIG command in a variety of ways.</p></dd><dt><a href="Redis.html#method_connect">
Redis::connect</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Connect to a Redis server</p></dd><dt><a href="Redis.html#method_copy">
Redis::copy</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Make a copy of a key.</p></dd><dt><a href="Redis.html#method_clearTransferredBytes">
Redis::clearTransferredBytes</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Reset the number of bytes sent and received on the socket.</p></dd><dt><a href="RedisArray.html#method_clearLastError">
RedisArray::clearLastError</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_client">
RedisArray::client</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_close">
RedisArray::close</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_command">
RedisArray::command</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_config">
RedisArray::config</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_copy">
RedisArray::copy</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_clearTransferredBytes">
RedisArray::clearTransferredBytes</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_clearlasterror">
RedisCluster::clearlasterror</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_client">
RedisCluster::client</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_close">
RedisCluster::close</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_cluster">
RedisCluster::cluster</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_command">
RedisCluster::command</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_config">
RedisCluster::config</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_copy">
RedisCluster::copy</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_cleartransferredbytes">
RedisCluster::cleartransferredbytes</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisSentinel.html#method_ckquorum">
RedisSentinel::ckquorum</a>() — <em>Method in class <a href="RedisSentinel.html">RedisSentinel</a></em></dt>
<dd></dd> </dl><h2 id="letterD">D</h2>
<dl id="indexD"><dt><a href="Redis.html#method_dbSize">
Redis::dbSize</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Return the number of keys in the currently selected Redis database.</p></dd><dt><a href="Redis.html#method_debug">
Redis::debug</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute the Redis <code>DEBUG</code> command. Note that this is disabled by default
and can be very dangerous, even allowing you to crash the server. Use
with caution</p></dd><dt><a href="Redis.html#method_decr">
Redis::decr</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Decrement a Redis integer by 1 or a provided value.</p></dd><dt><a href="Redis.html#method_decrBy">
Redis::decrBy</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Decrement a redis integer by a value</p></dd><dt><a href="Redis.html#method_del">
Redis::del</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Delete one or more keys from Redis.</p></dd><dt><a href="Redis.html#method_delex">
Redis::delex</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Delete a key conditionally based on its value or hash digest</p></dd><dt><a href="Redis.html#method_delifeq">
Redis::delifeq</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Delete a key if it's equal to the specified value. This command is
specific to Valkey >= 9.0</p></dd><dt><a href="Redis.html#method_delete">
Redis::delete</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd></dd><dt><a href="Redis.html#method_discard">
Redis::discard</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Discard a transaction currently in progress.</p></dd><dt><a href="Redis.html#method_dump">
Redis::dump</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Dump Redis' internal binary representation of a key.</p></dd><dt><a href="Redis.html#method_digest">
Redis::digest</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Ask the server for the XXH3 digest of a given key's value</p></dd><dt><a href="RedisArray.html#method_del">
RedisArray::del</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_discard">
RedisArray::discard</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_dbSize">
RedisArray::dbSize</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_debug">
RedisArray::debug</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_decr">
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">
RedisCluster::decr</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_decrby">
RedisCluster::decrby</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_decrbyfloat">
RedisCluster::decrbyfloat</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_del">
RedisCluster::del</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_delex">
RedisCluster::delex</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd><p>Delete a key conditionally based on its value or hash digest</p></dd><dt><a href="RedisCluster.html#method_delifeq">
RedisCluster::delifeq</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd><p>Delete a key if it's equal to the specified value. This command is
specific to Valkey >= 9.0</p></dd><dt><a href="RedisCluster.html#method_discard">
RedisCluster::discard</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_dump">
RedisCluster::dump</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_digest">
RedisCluster::digest</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd> </dl><h2 id="letterE">E</h2>
<dl id="indexE"><dt><a href="Redis.html#method_echo">
Redis::echo</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Have Redis repeat back an arbitrary string to the client.</p></dd><dt><a href="Redis.html#method_eval">
Redis::eval</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute a LUA script on the redis server.</p></dd><dt><a href="Redis.html#method_eval_ro">
Redis::eval_ro</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>This is simply the read-only variant of eval, meaning the underlying script
may not modify data in redis.</p></dd><dt><a href="Redis.html#method_evalsha">
Redis::evalsha</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute a LUA script on the server but instead of sending the script, send
the SHA1 hash of the script.</p></dd><dt><a href="Redis.html#method_evalsha_ro">
Redis::evalsha_ro</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>This is simply the read-only variant of evalsha, meaning the underlying script
may not modify data in redis.</p></dd><dt><a href="Redis.html#method_exec">
Redis::exec</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Execute either a MULTI or PIPELINE block and return the array of replies.</p></dd><dt><a href="Redis.html#method_exists">
Redis::exists</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Test if one or more keys exist.</p></dd><dt><a href="Redis.html#method_expire">
Redis::expire</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Sets an expiration in seconds on the key in question. If connected to
redis-server >= 7.0.0 you may send an additional "mode" argument which
modifies how the command will execute.</p></dd><dt><a href="Redis.html#method_expireAt">
Redis::expireAt</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Set a key to expire at an exact unix timestamp.</p></dd><dt><a href="Redis.html#method_expiretime">
Redis::expiretime</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the expiration of a given key as a unix timestamp</p></dd><dt><a href="Redis.html#method_expiremember">
Redis::expiremember</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Set an expiration on a key member (KeyDB only).</p></dd><dt><a href="Redis.html#method_expirememberat">
Redis::expirememberat</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Set an expiration on a key membert to a specific unix timestamp (KeyDB only).</p></dd><dt><a href="RedisArray.html#method_exec">
RedisArray::exec</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_echo">
RedisArray::echo</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_eval">
RedisArray::eval</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_eval_ro">
RedisArray::eval_ro</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_evalsha">
RedisArray::evalsha</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_evalsha_ro">
RedisArray::evalsha_ro</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_exists">
RedisArray::exists</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_expire">
RedisArray::expire</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_expireAt">
RedisArray::expireAt</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_expiretime">
RedisArray::expiretime</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_expiremember">
RedisArray::expiremember</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_expirememberat">
RedisArray::expirememberat</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_echo">
RedisCluster::echo</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_eval">
RedisCluster::eval</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_eval_ro">
RedisCluster::eval_ro</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_evalsha">
RedisCluster::evalsha</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_evalsha_ro">
RedisCluster::evalsha_ro</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_exec">
RedisCluster::exec</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_exists">
RedisCluster::exists</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_expire">
RedisCluster::expire</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_expireat">
RedisCluster::expireat</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_expiretime">
RedisCluster::expiretime</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_expiremember">
RedisCluster::expiremember</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_expirememberat">
RedisCluster::expirememberat</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd> </dl><h2 id="letterF">F</h2>
<dl id="indexF"><dt><a href="Redis.html#method_failover">
Redis::failover</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd></dd><dt><a href="Redis.html#method_fcall">
Redis::fcall</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Invoke a function.</p></dd><dt><a href="Redis.html#method_fcall_ro">
Redis::fcall_ro</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>This is a read-only variant of the FCALL command that cannot execute commands that modify data.</p></dd><dt><a href="Redis.html#method_flushAll">
Redis::flushAll</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Deletes every key in all Redis databases</p></dd><dt><a href="Redis.html#method_flushDB">
Redis::flushDB</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Deletes all the keys of the currently selected database.</p></dd><dt><a href="Redis.html#method_function">
Redis::function</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Functions is an API for managing code to be executed on the server.</p></dd><dt><a href="RedisArray.html#method_flushall">
RedisArray::flushall</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_flushdb">
RedisArray::flushdb</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_failover">
RedisArray::failover</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_fcall">
RedisArray::fcall</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_fcall_ro">
RedisArray::fcall_ro</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_function">
RedisArray::function</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_flushall">
RedisCluster::flushall</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_flushdb">
RedisCluster::flushdb</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisSentinel.html#method_failover">
RedisSentinel::failover</a>() — <em>Method in class <a href="RedisSentinel.html">RedisSentinel</a></em></dt>
<dd></dd><dt><a href="RedisSentinel.html#method_flushconfig">
RedisSentinel::flushconfig</a>() — <em>Method in class <a href="RedisSentinel.html">RedisSentinel</a></em></dt>
<dd></dd> </dl><h2 id="letterG">G</h2>
<dl id="indexG"><dt><a href="Redis.html#method_geoadd">
Redis::geoadd</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Add one or more members to a geospacial sorted set</p></dd><dt><a href="Redis.html#method_geodist">
Redis::geodist</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the distance between two members of a geospacially encoded sorted set.</p></dd><dt><a href="Redis.html#method_geohash">
Redis::geohash</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Retrieve one or more GeoHash encoded strings for members of the set.</p></dd><dt><a href="Redis.html#method_geopos">
Redis::geopos</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Return the longitude and latitude for one or more members of a geospacially encoded sorted set.</p></dd><dt><a href="Redis.html#method_georadius">
Redis::georadius</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Retrieve members of a geospacially sorted set that are within a certain radius of a location.</p></dd><dt><a href="Redis.html#method_georadius_ro">
Redis::georadius_ro</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>A readonly variant of <code>GEORADIUS</code> that may be executed on replicas.</p></dd><dt><a href="Redis.html#method_georadiusbymember">
Redis::georadiusbymember</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Similar to <code>GEORADIUS</code> except it uses a member as the center of the query.</p></dd><dt><a href="Redis.html#method_georadiusbymember_ro">
Redis::georadiusbymember_ro</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>This is the read-only variant of <code>GEORADIUSBYMEMBER</code> that can be run on replicas.</p></dd><dt><a href="Redis.html#method_geosearch">
Redis::geosearch</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Search a geospacial sorted set for members in various ways.</p></dd><dt><a href="Redis.html#method_geosearchstore">
Redis::geosearchstore</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Search a geospacial sorted set for members within a given area or range, storing the results into
a new set.</p></dd><dt><a href="Redis.html#method_get">
Redis::get</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Retrieve a string keys value.</p></dd><dt><a href="Redis.html#method_getWithMeta">
Redis::getWithMeta</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Retrieve a value and metadata of key.</p></dd><dt><a href="Redis.html#method_getAuth">
Redis::getAuth</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the authentication information on the connection, if any.</p></dd><dt><a href="Redis.html#method_getBit">
Redis::getBit</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the bit at a given index in a string key.</p></dd><dt><a href="Redis.html#method_getEx">
Redis::getEx</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the value of a key and optionally set it's expiration.</p></dd><dt><a href="Redis.html#method_getDBNum">
Redis::getDBNum</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the database number PhpRedis thinks we're connected to.</p></dd><dt><a href="Redis.html#method_getDel">
Redis::getDel</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get a key from Redis and delete it in an atomic operation.</p></dd><dt><a href="Redis.html#method_getHost">
Redis::getHost</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Return the host or Unix socket we are connected to.</p></dd><dt><a href="Redis.html#method_getLastError">
Redis::getLastError</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the last error returned to us from Redis, if any.</p></dd><dt><a href="Redis.html#method_getMode">
Redis::getMode</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Returns whether the connection is in ATOMIC, MULTI, or PIPELINE mode</p></dd><dt><a href="Redis.html#method_getOption">
Redis::getOption</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Retrieve the value of a configuration setting as set by Redis::setOption()</p></dd><dt><a href="Redis.html#method_getPersistentID">
Redis::getPersistentID</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the persistent connection ID, if there is one.</p></dd><dt><a href="Redis.html#method_getPort">
Redis::getPort</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the port we are connected to. This number will be zero if we are connected to a unix socket.</p></dd><dt><a href="Redis.html#method_getRange">
Redis::getRange</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Retrieve a substring of a string by index.</p></dd><dt><a href="Redis.html#method_getReadTimeout">
Redis::getReadTimeout</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Get the currently set read timeout on the connection.</p></dd><dt><a href="Redis.html#method_getset">
Redis::getset</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Sets a key and returns any previously set value, if the key already existed.</p></dd><dt><a href="Redis.html#method_getTimeout">
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="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>
<dd></dd><dt><a href="RedisArray.html#method_geodist">
RedisArray::geodist</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_geohash">
RedisArray::geohash</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_geopos">
RedisArray::geopos</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_georadius">
RedisArray::georadius</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_georadius_ro">
RedisArray::georadius_ro</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_georadiusbymember">
RedisArray::georadiusbymember</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_georadiusbymember_ro">
RedisArray::georadiusbymember_ro</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_geosearch">
RedisArray::geosearch</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_geosearchstore">
RedisArray::geosearchstore</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_get">
RedisArray::get</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getWithMeta">
RedisArray::getWithMeta</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getAuth">
RedisArray::getAuth</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getBit">
RedisArray::getBit</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getEx">
RedisArray::getEx</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getDBNum">
RedisArray::getDBNum</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getDel">
RedisArray::getDel</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getHost">
RedisArray::getHost</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getLastError">
RedisArray::getLastError</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getMode">
RedisArray::getMode</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getPersistentID">
RedisArray::getPersistentID</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getPort">
RedisArray::getPort</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getRange">
RedisArray::getRange</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getReadTimeout">
RedisArray::getReadTimeout</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getset">
RedisArray::getset</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getTimeout">
RedisArray::getTimeout</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisArray.html#method_getTransferredBytes">
RedisArray::getTransferredBytes</a>() — <em>Method in class <a href="RedisArray.html">RedisArray</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_geoadd">
RedisCluster::geoadd</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_geodist">
RedisCluster::geodist</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_geohash">
RedisCluster::geohash</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_geopos">
RedisCluster::geopos</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_georadius">
RedisCluster::georadius</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_georadius_ro">
RedisCluster::georadius_ro</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_georadiusbymember">
RedisCluster::georadiusbymember</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_georadiusbymember_ro">
RedisCluster::georadiusbymember_ro</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_geosearch">
RedisCluster::geosearch</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_geosearchstore">
RedisCluster::geosearchstore</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_get">
RedisCluster::get</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getdel">
RedisCluster::getdel</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getWithMeta">
RedisCluster::getWithMeta</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getex">
RedisCluster::getex</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getbit">
RedisCluster::getbit</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getlasterror">
RedisCluster::getlasterror</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getmode">
RedisCluster::getmode</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getoption">
RedisCluster::getoption</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getrange">
RedisCluster::getrange</a>() — <em>Method in class <a href="RedisCluster.html">RedisCluster</a></em></dt>
<dd></dd><dt><a href="RedisCluster.html#method_getset">
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>
<dl id="indexH"><dt><a href="Redis.html#method_hDel">
Redis::hDel</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Remove one or more fields from a hash.</p></dd><dt><a href="Redis.html#method_hExists">
Redis::hExists</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>
<dd><p>Checks whether a field exists in a hash.</p></dd><dt><a href="Redis.html#method_hGet">
Redis::hGet</a>() — <em>Method in class <a href="Redis.html">Redis</a></em></dt>