summaryrefslogtreecommitdiffstats
path: root/REFLECTION
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-11-17 10:24:22 +0100
committerRemi Collet <remi@php.net>2021-11-17 10:24:22 +0100
commitbcde0ac48186ef2011aad71693fe951aa1922520 (patch)
treebc82c3280445defe9333f17b3df9ffbabc9738a6 /REFLECTION
parent4efcbe82b99c2018370ce0041be720afbd22efe1 (diff)
update to 5.3.5RC1
Diffstat (limited to 'REFLECTION')
-rw-r--r--REFLECTION107
1 files changed, 100 insertions, 7 deletions
diff --git a/REFLECTION b/REFLECTION
index 377a9ef..ece7296 100644
--- a/REFLECTION
+++ b/REFLECTION
@@ -1,4 +1,4 @@
-Extension [ <persistent> extension #117 redis version 5.3.4 ] {
+Extension [ <persistent> extension #126 redis version 5.3.5RC1 ] {
- Dependencies {
Dependency [ igbinary (Required) ]
@@ -80,6 +80,12 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
Entry [ redis.pconnect.echo_check_liveness <ALL> ]
Current = '1'
}
+ Entry [ redis.pconnect.pool_detect_dirty <ALL> ]
+ Current = '0'
+ }
+ Entry [ redis.pconnect.pool_poll_timeout <ALL> ]
+ Current = '0'
+ }
Entry [ redis.pconnect.pool_pattern <ALL> ]
Current = ''
}
@@ -100,7 +106,7 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
- Classes [6] {
Class [ <internal:redis> class Redis ] {
- - Constants [37] {
+ - Constants [48] {
Constant [ public int REDIS_NOT_FOUND ] { 0 }
Constant [ public int REDIS_STRING ] { 1 }
Constant [ public int REDIS_SET ] { 2 }
@@ -138,6 +144,17 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
Constant [ public int SCAN_NOPREFIX ] { 3 }
Constant [ public string AFTER ] { after }
Constant [ public string BEFORE ] { before }
+ Constant [ public int OPT_MAX_RETRIES ] { 11 }
+ Constant [ public int OPT_BACKOFF_ALGORITHM ] { 12 }
+ Constant [ public int BACKOFF_ALGORITHM_DEFAULT ] { 0 }
+ Constant [ public int BACKOFF_ALGORITHM_CONSTANT ] { 6 }
+ Constant [ public int BACKOFF_ALGORITHM_UNIFORM ] { 5 }
+ Constant [ public int BACKOFF_ALGORITHM_EXPONENTIAL ] { 4 }
+ Constant [ public int BACKOFF_ALGORITHM_FULL_JITTER ] { 2 }
+ Constant [ public int BACKOFF_ALGORITHM_EQUAL_JITTER ] { 3 }
+ Constant [ public int BACKOFF_ALGORITHM_DECORRELATED_JITTER ] { 1 }
+ Constant [ public int OPT_BACKOFF_BASE ] { 13 }
+ Constant [ public int OPT_BACKOFF_CAP ] { 14 }
}
- Static properties [0] {
@@ -149,7 +166,7 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
- Properties [0] {
}
- - Methods [235] {
+ - Methods [240] {
Method [ <internal:redis, ctor> public method __construct ] {
- Parameters [0] {
@@ -183,6 +200,34 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
}
}
+ Method [ <internal:redis> public method _pack ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:redis> public method _unpack ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:redis> public method _compress ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:redis> public method _uncompress ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
Method [ <internal:redis> public method acl ] {
- Parameters [2] {
@@ -1193,6 +1238,15 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
}
}
+ Method [ <internal:redis> public method sMisMember ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $key ]
+ Parameter #1 [ <required> $member ]
+ Parameter #2 [ <optional> ...$other_members ]
+ }
+ }
+
Method [ <internal:redis> public method sMove ] {
- Parameters [3] {
@@ -2303,7 +2357,7 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
Class [ <internal:redis> class RedisCluster ] {
- - Constants [41] {
+ - Constants [52] {
Constant [ public int REDIS_NOT_FOUND ] { 0 }
Constant [ public int REDIS_STRING ] { 1 }
Constant [ public int REDIS_SET ] { 2 }
@@ -2338,13 +2392,24 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
Constant [ public int SCAN_NORETRY ] { 0 }
Constant [ public int SCAN_PREFIX ] { 2 }
Constant [ public int SCAN_NOPREFIX ] { 3 }
+ Constant [ public string AFTER ] { after }
+ Constant [ public string BEFORE ] { before }
Constant [ public int OPT_SLAVE_FAILOVER ] { 5 }
Constant [ public int FAILOVER_NONE ] { 0 }
Constant [ public int FAILOVER_ERROR ] { 1 }
Constant [ public int FAILOVER_DISTRIBUTE ] { 2 }
Constant [ public int FAILOVER_DISTRIBUTE_SLAVES ] { 3 }
- Constant [ public string AFTER ] { after }
- Constant [ public string BEFORE ] { before }
+ Constant [ public int OPT_MAX_RETRIES ] { 11 }
+ Constant [ public int OPT_BACKOFF_ALGORITHM ] { 12 }
+ Constant [ public int BACKOFF_ALGORITHM_DEFAULT ] { 0 }
+ Constant [ public int BACKOFF_ALGORITHM_CONSTANT ] { 6 }
+ Constant [ public int BACKOFF_ALGORITHM_UNIFORM ] { 5 }
+ Constant [ public int BACKOFF_ALGORITHM_EXPONENTIAL ] { 4 }
+ Constant [ public int BACKOFF_ALGORITHM_FULL_JITTER ] { 2 }
+ Constant [ public int BACKOFF_ALGORITHM_EQUAL_JITTER ] { 3 }
+ Constant [ public int BACKOFF_ALGORITHM_DECORRELATED_JITTER ] { 1 }
+ Constant [ public int OPT_BACKOFF_BASE ] { 13 }
+ Constant [ public int OPT_BACKOFF_CAP ] { 14 }
}
- Static properties [0] {
@@ -2356,7 +2421,7 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
- Properties [0] {
}
- - Methods [186] {
+ - Methods [190] {
Method [ <internal:redis, ctor> public method __construct ] {
- Parameters [6] {
@@ -2402,6 +2467,34 @@ Extension [ <persistent> extension #117 redis version 5.3.4 ] {
}
}
+ Method [ <internal:redis> public method _compress ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:redis> public method _uncompress ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:redis> public method _pack ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:redis> public method _unpack ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $value ]
+ }
+ }
+
Method [ <internal:redis> public method acl ] {
- Parameters [3] {