From 622e54e0b2b664b27534b4c94ad4edea5d28572c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 4 Oct 2024 18:00:06 +0200 Subject: update to 3.3.0RC1 enable zstd compression support --- REFLECTION | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index e3efdf0..80a5679 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #72 memcached version 3.2.0 ] { +Extension [ extension #112 memcached version 3.3.0RC1 ] { - Dependencies { Dependency [ session (Required) ] @@ -71,6 +71,9 @@ Extension [ extension #72 memcached version 3.2.0 ] { Entry [ memcached.compression_factor ] Current = '1.3' } + Entry [ memcached.compression_level ] + Current = '3' + } Entry [ memcached.compression_threshold ] Current = '2000' } @@ -80,6 +83,9 @@ Extension [ extension #72 memcached version 3.2.0 ] { Entry [ memcached.store_retry_count ] Current = '0' } + Entry [ memcached.item_size_limit ] + Current = '0' + } Entry [ memcached.default_consistent_hash ] Current = '0' } @@ -94,15 +100,18 @@ Extension [ extension #72 memcached version 3.2.0 ] { - Classes [3] { Class [ 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 [ 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 [ extension #72 memcached version 3.2.0 ] { Method [ public method cas ] { - Parameters [4] { - Parameter #0 [ string $cas_token ] + Parameter #0 [ string|int|float $cas_token ] Parameter #1 [ string $key ] Parameter #2 [ mixed $value ] Parameter #3 [ int $expiration = 0 ] @@ -424,7 +434,7 @@ Extension [ extension #72 memcached version 3.2.0 ] { Method [ public method casByKey ] { - Parameters [5] { - Parameter #0 [ string $cas_token ] + Parameter #0 [ string|int|float $cas_token ] Parameter #1 [ string $server_key ] Parameter #2 [ string $key ] Parameter #3 [ mixed $value ] -- cgit