We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df0f0cc commit 21ab190Copy full SHA for 21ab190
src/Redis.php
@@ -39,6 +39,22 @@ class Redis
39
*/
40
const OPT_SERIALIZER = 1;
41
const OPT_PREFIX = 2;
42
+ const OPT_READ_TIMEOUT = 3;
43
+ const OPT_SCAN = 4;
44
+ const OPT_SLAVE_FAILOVER = 5;
45
+
46
+ /**
47
+ * Cluster options
48
+ */
49
+ const FAILOVER_NONE = 0;
50
+ const FAILOVER_ERROR = 1;
51
+ const FAILOVER_DISTRIBUTE = 2;
52
53
54
+ * SCAN options
55
56
+ const SCAN_NORETRY = 0;
57
+ const SCAN_RETRY = 1;
58
59
/**
60
* Serializers
0 commit comments