diff options
author | Remi Collet <remi@remirepo.net> | 2024-10-04 18:00:06 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-10-04 18:00:06 +0200 |
commit | 622e54e0b2b664b27534b4c94ad4edea5d28572c (patch) | |
tree | bbf8fc508812b7498d6d78c6f267aab887317b97 /REFLECTION | |
parent | 1d38a06a4793fed16af1757765843faa2132cd93 (diff) |
update to 3.3.0RC1
enable zstd compression support
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #72 memcached version 3.2.0 ] { +Extension [ <persistent> extension #112 memcached version 3.3.0RC1 ] { - Dependencies { Dependency [ session (Required) ] @@ -71,6 +71,9 @@ Extension [ <persistent> extension #72 memcached version 3.2.0 ] { Entry [ memcached.compression_factor <ALL> ] Current = '1.3' } + Entry [ memcached.compression_level <ALL> ] + Current = '3' + } Entry [ memcached.compression_threshold <ALL> ] Current = '2000' } @@ -80,6 +83,9 @@ Extension [ <persistent> extension #72 memcached version 3.2.0 ] { Entry [ memcached.store_retry_count <ALL> ] Current = '0' } + Entry [ memcached.item_size_limit <ALL> ] + Current = '0' + } Entry [ memcached.default_consistent_hash <ALL> ] Current = '0' } @@ -94,15 +100,18 @@ Extension [ <persistent> extension #72 memcached version 3.2.0 ] { - Classes [3] { Class [ <internal:memcached> class Memcached ] { - - Constants [146] { - Constant [ public int LIBMEMCACHED_VERSION_HEX ] { 16781314 } + - Constants [150] { + Constant [ public int LIBMEMCACHED_VERSION_HEX ] { 16781316 } Constant [ public int OPT_COMPRESSION ] { -1001 } Constant [ public int OPT_COMPRESSION_TYPE ] { -1004 } + Constant [ public int OPT_COMPRESSION_LEVEL ] { -1007 } Constant [ public int OPT_PREFIX_KEY ] { -1002 } Constant [ public int OPT_SERIALIZER ] { -1003 } Constant [ public int OPT_USER_FLAGS ] { -1006 } Constant [ public int OPT_STORE_RETRY_COUNT ] { -1005 } + Constant [ public int OPT_ITEM_SIZE_LIMIT ] { -1008 } Constant [ public bool HAVE_IGBINARY ] { 1 } + Constant [ public bool HAVE_ZSTD ] { 1 } Constant [ public bool HAVE_JSON ] { 1 } Constant [ public bool HAVE_MSGPACK ] { 1 } Constant [ public bool HAVE_ENCODING ] { 1 } @@ -207,6 +216,7 @@ Extension [ <persistent> extension #72 memcached version 3.2.0 ] { Constant [ public int SERIALIZER_MSGPACK ] { 5 } Constant [ public int COMPRESSION_FASTLZ ] { 2 } Constant [ public int COMPRESSION_ZLIB ] { 1 } + Constant [ public int COMPRESSION_ZSTD ] { 3 } Constant [ public int GET_PRESERVE_ORDER ] { 1 } Constant [ public int GET_EXTENDED ] { 2 } Constant [ public int ON_CONNECT ] { 0 } @@ -413,7 +423,7 @@ Extension [ <persistent> extension #72 memcached version 3.2.0 ] { Method [ <internal:memcached> public method cas ] { - Parameters [4] { - Parameter #0 [ <required> string $cas_token ] + Parameter #0 [ <required> string|int|float $cas_token ] Parameter #1 [ <required> string $key ] Parameter #2 [ <required> mixed $value ] Parameter #3 [ <optional> int $expiration = 0 ] @@ -424,7 +434,7 @@ Extension [ <persistent> extension #72 memcached version 3.2.0 ] { Method [ <internal:memcached> public method casByKey ] { - Parameters [5] { - Parameter #0 [ <required> string $cas_token ] + Parameter #0 [ <required> string|int|float $cas_token ] Parameter #1 [ <required> string $server_key ] Parameter #2 [ <required> string $key ] Parameter #3 [ <required> mixed $value ] |