diff options
author | Remi Collet <remi@remirepo.net> | 2019-10-09 15:00:17 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-10-09 15:00:17 +0200 |
commit | d39a9d0bafc69975cb744505370fe131630cfff0 (patch) | |
tree | 20ec78995332889cde6daf9709e6739dc716752d /REFLECTION | |
parent | f428774cc460622665cf63ed40063f649187834a (diff) |
- update to 5.1.0RC1
- enable ZSTD compression support
- open https://github.com/phpredis/phpredis/pull/1648
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #197 redis version 5.0.2 ] { +Extension [ <persistent> extension #196 redis version 5.1.0RC1 ] { - Dependencies { Dependency [ igbinary (Required) ] @@ -94,7 +94,7 @@ Extension [ <persistent> extension #197 redis version 5.0.2 ] { - Classes [5] { Class [ <internal:redis> class Redis ] { - - Constants [28] { + - Constants [33] { Constant [ public integer REDIS_NOT_FOUND ] { 0 } Constant [ public integer REDIS_STRING ] { 1 } Constant [ public integer REDIS_SET ] { 2 } @@ -111,6 +111,7 @@ Extension [ <persistent> extension #197 redis version 5.0.2 ] { Constant [ public integer OPT_TCP_KEEPALIVE ] { 6 } Constant [ public integer OPT_COMPRESSION ] { 7 } Constant [ public integer OPT_REPLY_LITERAL ] { 8 } + Constant [ public integer OPT_COMPRESSION_LEVEL ] { 9 } Constant [ public integer SERIALIZER_NONE ] { 0 } Constant [ public integer SERIALIZER_PHP ] { 1 } Constant [ public integer SERIALIZER_IGBINARY ] { 2 } @@ -118,6 +119,10 @@ Extension [ <persistent> extension #197 redis version 5.0.2 ] { Constant [ public integer SERIALIZER_JSON ] { 4 } Constant [ public integer COMPRESSION_NONE ] { 0 } Constant [ public integer COMPRESSION_LZF ] { 1 } + Constant [ public integer COMPRESSION_ZSTD ] { 2 } + Constant [ public integer COMPRESSION_ZSTD_MIN ] { 1 } + Constant [ public integer COMPRESSION_ZSTD_DEFAULT ] { 3 } + Constant [ public integer COMPRESSION_ZSTD_MAX ] { 22 } Constant [ public integer OPT_SCAN ] { 4 } Constant [ public integer SCAN_RETRY ] { 1 } Constant [ public integer SCAN_NORETRY ] { 0 } @@ -2279,7 +2284,7 @@ Extension [ <persistent> extension #197 redis version 5.0.2 ] { Class [ <internal:redis> class RedisCluster ] { - - Constants [32] { + - Constants [37] { Constant [ public integer REDIS_NOT_FOUND ] { 0 } Constant [ public integer REDIS_STRING ] { 1 } Constant [ public integer REDIS_SET ] { 2 } @@ -2295,6 +2300,7 @@ Extension [ <persistent> extension #197 redis version 5.0.2 ] { Constant [ public integer OPT_TCP_KEEPALIVE ] { 6 } Constant [ public integer OPT_COMPRESSION ] { 7 } Constant [ public integer OPT_REPLY_LITERAL ] { 8 } + Constant [ public integer OPT_COMPRESSION_LEVEL ] { 9 } Constant [ public integer SERIALIZER_NONE ] { 0 } Constant [ public integer SERIALIZER_PHP ] { 1 } Constant [ public integer SERIALIZER_IGBINARY ] { 2 } @@ -2302,6 +2308,10 @@ Extension [ <persistent> extension #197 redis version 5.0.2 ] { Constant [ public integer SERIALIZER_JSON ] { 4 } Constant [ public integer COMPRESSION_NONE ] { 0 } Constant [ public integer COMPRESSION_LZF ] { 1 } + Constant [ public integer COMPRESSION_ZSTD ] { 2 } + Constant [ public integer COMPRESSION_ZSTD_MIN ] { 1 } + Constant [ public integer COMPRESSION_ZSTD_DEFAULT ] { 3 } + Constant [ public integer COMPRESSION_ZSTD_MAX ] { 22 } Constant [ public integer OPT_SCAN ] { 4 } Constant [ public integer SCAN_RETRY ] { 1 } Constant [ public integer SCAN_NORETRY ] { 0 } |