From 98920b88052507ef2863fcce36365938cc0d1fa1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 25 Feb 2022 11:59:30 +0100 Subject: rebuild using remi-libmemcached-awesome --- PHPINFO | 2 +- REFLECTION | 346 +++++++++++++++++++++++++++++++----------------- php-pecl-memcached.spec | 9 +- 3 files changed, 232 insertions(+), 125 deletions(-) diff --git a/PHPINFO b/PHPINFO index 3f944ce..02d2609 100644 --- a/PHPINFO +++ b/PHPINFO @@ -3,7 +3,7 @@ memcached memcached support => enabled Version => 3.1.5 -libmemcached-awesome version => 1.1.0 +libmemcached-awesome version => 1.1.1 SASL support => yes Session support => yes igbinary support => yes diff --git a/REFLECTION b/REFLECTION index 86e8a82..d3d40e1 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,9 +1,10 @@ -Extension [ extension #116 memcached version 3.1.5 ] { +Extension [ extension #113 memcached version 3.1.5 ] { - Dependencies { Dependency [ session (Required) ] Dependency [ igbinary (Required) ] Dependency [ msgpack (Required) ] + Dependency [ spl (Required) ] } - INI { @@ -94,7 +95,7 @@ Extension [ extension #116 memcached version 3.1.5 ] { Class [ class Memcached ] { - Constants [133] { - Constant [ public int LIBMEMCACHED_VERSION_HEX ] { 16781312 } + Constant [ public int LIBMEMCACHED_VERSION_HEX ] { 16781313 } Constant [ public int OPT_COMPRESSION ] { -1001 } Constant [ public int OPT_COMPRESSION_TYPE ] { -1004 } Constant [ public int OPT_PREFIX_KEY ] { -1002 } @@ -241,9 +242,10 @@ Extension [ extension #116 memcached version 3.1.5 ] { - Methods [58] { Method [ public method __construct ] { - - Parameters [2] { - Parameter #0 [ $persistent_id ] - Parameter #1 [ $callback ] + - Parameters [3] { + Parameter #0 [ ?string $persistent_id = null ] + Parameter #1 [ ?callable $callback = null ] + Parameter #2 [ ?string $connection_str = null ] } } @@ -251,310 +253,345 @@ Extension [ extension #116 memcached version 3.1.5 ] { - Parameters [0] { } + - Return [ int ] } Method [ public method getResultMessage ] { - Parameters [0] { } + - Return [ string ] } Method [ public method get ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $cache_cb ] - Parameter #2 [ $get_flags ] + Parameter #0 [ string $key ] + Parameter #1 [ ?callable $cache_cb = null ] + Parameter #2 [ int $get_flags = 0 ] } + - Return [ mixed ] } Method [ public method getByKey ] { - Parameters [4] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $cache_cb ] - Parameter #3 [ $get_flags ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ ?callable $cache_cb = null ] + Parameter #3 [ int $get_flags = 0 ] } + - Return [ mixed ] } Method [ public method getMulti ] { - Parameters [2] { Parameter #0 [ array $keys ] - Parameter #1 [ $get_flags ] + Parameter #1 [ int $get_flags = 0 ] } + - Return [ array|false ] } Method [ public method getMultiByKey ] { - Parameters [3] { - Parameter #0 [ $server_key ] + Parameter #0 [ string $server_key ] Parameter #1 [ array $keys ] - Parameter #2 [ $get_flags ] + Parameter #2 [ int $get_flags = 0 ] } + - Return [ array|false ] } Method [ public method getDelayed ] { - Parameters [3] { Parameter #0 [ array $keys ] - Parameter #1 [ $with_cas ] - Parameter #2 [ $value_cb ] + Parameter #1 [ bool $with_cas = false ] + Parameter #2 [ ?callable $value_cb = null ] } + - Return [ bool ] } Method [ public method getDelayedByKey ] { - Parameters [4] { - Parameter #0 [ $server_key ] + Parameter #0 [ string $server_key ] Parameter #1 [ array $keys ] - Parameter #2 [ $with_cas ] - Parameter #3 [ $value_cb ] + Parameter #2 [ bool $with_cas = false ] + Parameter #3 [ ?callable $value_cb = null ] } + - Return [ bool ] } Method [ public method fetch ] { - Parameters [0] { } + - Return [ array|false ] } Method [ public method fetchAll ] { - Parameters [0] { } + - Return [ array|false ] } Method [ public method set ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $expiration ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method setByKey ] { - Parameters [4] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] - Parameter #3 [ $expiration ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ mixed $value ] + Parameter #3 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method touch ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $expiration ] + Parameter #0 [ string $key ] + Parameter #1 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method touchByKey ] { - Parameters [3] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $expiration ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method setMulti ] { - Parameters [2] { Parameter #0 [ array $items ] - Parameter #1 [ $expiration ] + Parameter #1 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method setMultiByKey ] { - Parameters [3] { - Parameter #0 [ $server_key ] + Parameter #0 [ string $server_key ] Parameter #1 [ array $items ] - Parameter #2 [ $expiration ] + Parameter #2 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method cas ] { - Parameters [4] { - Parameter #0 [ $cas_token ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] - Parameter #3 [ $expiration ] + Parameter #0 [ string $cas_token ] + Parameter #1 [ string $key ] + Parameter #2 [ mixed $value ] + Parameter #3 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method casByKey ] { - Parameters [5] { - Parameter #0 [ $cas_token ] - Parameter #1 [ $server_key ] - Parameter #2 [ $key ] - Parameter #3 [ $value ] - Parameter #4 [ $expiration ] + Parameter #0 [ string $cas_token ] + Parameter #1 [ string $server_key ] + Parameter #2 [ string $key ] + Parameter #3 [ mixed $value ] + Parameter #4 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method add ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $expiration ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method addByKey ] { - Parameters [4] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] - Parameter #3 [ $expiration ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ mixed $value ] + Parameter #3 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method append ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $value ] } + - Return [ ?bool ] } Method [ public method appendByKey ] { - Parameters [3] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ string $value ] } + - Return [ ?bool ] } Method [ public method prepend ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $value ] } + - Return [ ?bool ] } Method [ public method prependByKey ] { - Parameters [3] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ string $value ] } + - Return [ ?bool ] } Method [ public method replace ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $expiration ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method replaceByKey ] { - Parameters [4] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] - Parameter #3 [ $expiration ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ mixed $value ] + Parameter #3 [ int $expiration = 0 ] } + - Return [ bool ] } Method [ public method delete ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $time ] + Parameter #0 [ string $key ] + Parameter #1 [ int $time = 0 ] } + - Return [ bool ] } Method [ public method deleteMulti ] { - Parameters [2] { - Parameter #0 [ $keys ] - Parameter #1 [ $time ] + Parameter #0 [ array $keys ] + Parameter #1 [ int $time = 0 ] } + - Return [ array ] } Method [ public method deleteByKey ] { - Parameters [3] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $time ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ int $time = 0 ] } + - Return [ bool ] } Method [ public method deleteMultiByKey ] { - Parameters [3] { - Parameter #0 [ $server_key ] - Parameter #1 [ $keys ] - Parameter #2 [ $time ] + Parameter #0 [ string $server_key ] + Parameter #1 [ array $keys ] + Parameter #2 [ int $time = 0 ] } + - Return [ array ] } Method [ public method increment ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] - Parameter #2 [ $initial_value ] - Parameter #3 [ $expiry ] + Parameter #0 [ string $key ] + Parameter #1 [ int $offset = 1 ] + Parameter #2 [ int $initial_value = 0 ] + Parameter #3 [ int $expiry = 0 ] } + - Return [ int|false ] } Method [ public method decrement ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] - Parameter #2 [ $initial_value ] - Parameter #3 [ $expiry ] + Parameter #0 [ string $key ] + Parameter #1 [ int $offset = 1 ] + Parameter #2 [ int $initial_value = 0 ] + Parameter #3 [ int $expiry = 0 ] } + - Return [ int|false ] } Method [ public method incrementByKey ] { - Parameters [5] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $offset ] - Parameter #3 [ $initial_value ] - Parameter #4 [ $expiry ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ int $offset = 1 ] + Parameter #3 [ int $initial_value = 0 ] + Parameter #4 [ int $expiry = 0 ] } + - Return [ int|false ] } Method [ public method decrementByKey ] { - Parameters [5] { - Parameter #0 [ $server_key ] - Parameter #1 [ $key ] - Parameter #2 [ $offset ] - Parameter #3 [ $initial_value ] - Parameter #4 [ $expiry ] + Parameter #0 [ string $server_key ] + Parameter #1 [ string $key ] + Parameter #2 [ int $offset = 1 ] + Parameter #3 [ int $initial_value = 0 ] + Parameter #4 [ int $expiry = 0 ] } + - Return [ int|false ] } Method [ public method addServer ] { - Parameters [3] { - Parameter #0 [ $host ] - Parameter #1 [ $port ] - Parameter #2 [ $weight ] + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ int $weight = 0 ] } + - Return [ bool ] } Method [ public method addServers ] { @@ -562,145 +599,167 @@ Extension [ extension #116 memcached version 3.1.5 ] { - Parameters [1] { Parameter #0 [ array $servers ] } + - Return [ bool ] } Method [ public method getServerList ] { - Parameters [0] { } + - Return [ array ] } Method [ public method getServerByKey ] { - Parameters [1] { - Parameter #0 [ $server_key ] + Parameter #0 [ string $server_key ] } + - Return [ array|false ] } Method [ public method resetServerList ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method quit ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method flushBuffers ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method getLastErrorMessage ] { - Parameters [0] { } + - Return [ string ] } Method [ public method getLastErrorCode ] { - Parameters [0] { } + - Return [ int ] } Method [ public method getLastErrorErrno ] { - Parameters [0] { } + - Return [ int ] } Method [ public method getLastDisconnectedServer ] { - Parameters [0] { } + - Return [ array|false ] } Method [ public method getStats ] { - Parameters [1] { - Parameter #0 [ $type ] + Parameter #0 [ ?string $type = null ] } + - Return [ array|false ] } Method [ public method getVersion ] { - Parameters [0] { } + - Return [ array|false ] } Method [ public method getAllKeys ] { - Parameters [0] { } + - Return [ array|false ] } Method [ public method flush ] { - Parameters [1] { - Parameter #0 [ $delay ] + Parameter #0 [ int $delay = 0 ] } + - Return [ bool ] } Method [ public method getOption ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ mixed ] } Method [ public method setOption ] { - Parameters [2] { - Parameter #0 [ $option ] - Parameter #1 [ $value ] + Parameter #0 [ int $option ] + Parameter #1 [ mixed $value ] } + - Return [ bool ] } Method [ public method setOptions ] { - Parameters [1] { - Parameter #0 [ $options ] + Parameter #0 [ array $options ] } + - Return [ bool ] } Method [ public method setBucket ] { - Parameters [3] { - Parameter #0 [ $host_map ] - Parameter #1 [ $forward_map ] - Parameter #2 [ $replicas ] + Parameter #0 [ array $host_map ] + Parameter #1 [ ?array $forward_map ] + Parameter #2 [ int $replicas ] } + - Return [ bool ] } Method [ public method setSaslAuthData ] { - Parameters [2] { - Parameter #0 [ $username ] - Parameter #1 [ $password ] + Parameter #0 [ string $username ] + Parameter #1 [ string $password ] } + - Return [ bool ] } Method [ public method setEncodingKey ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ bool ] } Method [ public method isPersistent ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method isPristine ] { - Parameters [0] { } + - Return [ bool ] } } } @@ -721,14 +780,25 @@ Extension [ extension #116 memcached version 3.1.5 ] { - Methods [2] { Method [ public method run ] { + + - Parameters [1] { + Parameter #0 [ string $address ] + } + - Return [ bool ] } Method [ public method on ] { + + - Parameters [2] { + Parameter #0 [ int $event ] + Parameter #1 [ callable $callback ] + } + - Return [ bool ] } } } - Class [ class MemcachedException extends Exception implements Throwable ] { + Class [ class MemcachedException extends RuntimeException implements Stringable, Throwable ] { - Constants [0] { } @@ -740,47 +810,81 @@ Extension [ extension #116 memcached version 3.1.5 ] { } - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected $file = NULL ] + Property [ protected $line = NULL ] } - Methods [10] { Method [ public method __construct ] { - Parameters [3] { - Parameter #0 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] } } Method [ public method __wakeup ] { + + - Parameters [0] { + } } Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] } Method [ final public method getCode ] { + + - Parameters [0] { + } } Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] } Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] } Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] } Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] } Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] } - Method [ public method __toString ] { + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] } } } diff --git a/php-pecl-memcached.spec b/php-pecl-memcached.spec index 38c0f35..ba83ab9 100644 --- a/php-pecl-memcached.spec +++ b/php-pecl-memcached.spec @@ -3,7 +3,7 @@ # # Fedora spec file for php-pecl-memcached # -# Copyright (c) 2009-2021 Remi Collet +# Copyright (c) 2009-2022 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -33,7 +33,7 @@ Summary: Extension to work with the Memcached caching daemon Name: %{?sub_prefix}php-pecl-memcached Version: 3.1.5 -Release: 12%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Release: 13%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: PHP URL: https://pecl.php.net/package/%{pecl_name} @@ -53,7 +53,7 @@ Patch10: https://patch-diff.githubusercontent.com/raw/php-memcached-dev/php Patch11: https://patch-diff.githubusercontent.com/raw/php-memcached-dev/php-memcached/pull/474.patch BuildRequires: %{?dtsprefix}gcc -BuildRequires: %{?scl_prefix}php-devel >= 7 +BuildRequires: %{?scl_prefix}php-devel >= 7.0 BuildRequires: %{?scl_prefix}php-pear BuildRequires: %{?scl_prefix}php-json %if %{with igbinary} @@ -386,6 +386,9 @@ exit $ret %changelog +* Fri Feb 25 2022 Remi Collet - 3.1.5-13 +- rebuild using remi-libmemcached-awesome + * Fri Nov 5 2021 Remi Collet - 3.1.5-12 - add patch for MemcachedServer from https://github.com/php-memcached-dev/php-memcached/pull/474 -- cgit