From e69a56b7c50b89ce8c6dcc40313585f8f3dcab52 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 26 Jun 2020 07:53:16 +0200 Subject: update to 5.3.0RC1 enable lz4 compression support drop patch merged upstream add upstream patch to fix lz4 library name add new option in provided configuration file --- REFLECTION | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index 56f4cc9..0f1a2c7 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #112 redis version 5.2.2 ] { +Extension [ extension #114 redis version 5.3.0RC1 ] { - Dependencies { Dependency [ igbinary (Required) ] @@ -80,6 +80,9 @@ Extension [ extension #112 redis version 5.2.2 ] { Entry [ redis.pconnect.echo_check_liveness ] Current = '1' } + Entry [ redis.pconnect.pool_pattern ] + Current = '' + } Entry [ redis.session.locking_enabled ] Current = '0' } @@ -97,7 +100,7 @@ Extension [ extension #112 redis version 5.2.2 ] { - Classes [6] { Class [ class Redis ] { - - Constants [33] { + - Constants [36] { Constant [ public int REDIS_NOT_FOUND ] { 0 } Constant [ public int REDIS_STRING ] { 1 } Constant [ public int REDIS_SET ] { 2 } @@ -126,9 +129,12 @@ Extension [ extension #112 redis version 5.2.2 ] { Constant [ public int COMPRESSION_ZSTD_MIN ] { 1 } Constant [ public int COMPRESSION_ZSTD_DEFAULT ] { 3 } Constant [ public int COMPRESSION_ZSTD_MAX ] { 22 } + Constant [ public int COMPRESSION_LZ4 ] { 3 } Constant [ public int OPT_SCAN ] { 4 } Constant [ public int SCAN_RETRY ] { 1 } 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 } } @@ -142,7 +148,7 @@ Extension [ extension #112 redis version 5.2.2 ] { - Properties [0] { } - - Methods [234] { + - Methods [235] { Method [ public method __construct ] { - Parameters [0] { @@ -176,6 +182,14 @@ Extension [ extension #112 redis version 5.2.2 ] { } } + Method [ public method acl ] { + + - Parameters [2] { + Parameter #0 [ $subcmd ] + Parameter #1 [ ...$args ] + } + } + Method [ public method append ] { - Parameters [2] { @@ -187,7 +201,7 @@ Extension [ extension #112 redis version 5.2.2 ] { Method [ public method auth ] { - Parameters [1] { - Parameter #0 [ $password ] + Parameter #0 [ $auth ] } } @@ -2288,7 +2302,7 @@ Extension [ extension #112 redis version 5.2.2 ] { Class [ class RedisCluster ] { - - Constants [37] { + - Constants [40] { Constant [ public int REDIS_NOT_FOUND ] { 0 } Constant [ public int REDIS_STRING ] { 1 } Constant [ public int REDIS_SET ] { 2 } @@ -2316,9 +2330,12 @@ Extension [ extension #112 redis version 5.2.2 ] { Constant [ public int COMPRESSION_ZSTD_MIN ] { 1 } Constant [ public int COMPRESSION_ZSTD_DEFAULT ] { 3 } Constant [ public int COMPRESSION_ZSTD_MAX ] { 22 } + Constant [ public int COMPRESSION_LZ4 ] { 3 } Constant [ public int OPT_SCAN ] { 4 } Constant [ public int SCAN_RETRY ] { 1 } Constant [ public int SCAN_NORETRY ] { 0 } + Constant [ public int SCAN_PREFIX ] { 2 } + Constant [ public int SCAN_NOPREFIX ] { 3 } Constant [ public int OPT_SLAVE_FAILOVER ] { 5 } Constant [ public int FAILOVER_NONE ] { 0 } Constant [ public int FAILOVER_ERROR ] { 1 } @@ -2337,7 +2354,7 @@ Extension [ extension #112 redis version 5.2.2 ] { - Properties [0] { } - - Methods [185] { + - Methods [186] { Method [ public method __construct ] { - Parameters [6] { @@ -2383,6 +2400,15 @@ Extension [ extension #112 redis version 5.2.2 ] { } } + Method [ public method acl ] { + + - Parameters [3] { + Parameter #0 [ $key_or_address ] + Parameter #1 [ $subcmd ] + Parameter #2 [ ...$args ] + } + } + Method [ public method append ] { - Parameters [2] { -- cgit