From e8b2d76741e1a90b6cb46c74ec5680420a3e12eb Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 20 Dec 2021 07:37:24 +0100 Subject: update to 2.3.1 drop patch merged upstream --- REFLECTION | 36 ++++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 14 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index cfb4747..c6ce10c 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #119 yac version 2.3.0 ] { +Extension [ extension #119 yac version 2.3.1 ] { - Dependencies { Dependency [ msgpack (Required) ] @@ -31,7 +31,7 @@ Extension [ extension #119 yac version 2.3.0 ] { } - Constants [9] { - Constant [ string YAC_VERSION ] { 2.3.0 } + Constant [ string YAC_VERSION ] { 2.3.1 } Constant [ int YAC_MAX_KEY_LEN ] { 48 } Constant [ int YAC_MAX_VALUE_RAW_LEN ] { 67108863 } Constant [ int YAC_MAX_RAW_COMPRESSED_LEN ] { 1048576 } @@ -61,60 +61,68 @@ Extension [ extension #119 yac version 2.3.0 ] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $prefix = ] + Parameter #0 [ string $prefix = "" ] } } Method [ public method add ] { - Parameters [3] { - Parameter #0 [ $keys ] - Parameter #1 [ $value = ] - Parameter #2 [ $ttl = ] + Parameter #0 [ array|string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ int $ttl = 0 ] } + - Return [ ?bool ] } Method [ public method set ] { - Parameters [3] { - Parameter #0 [ $keys ] - Parameter #1 [ $value = ] - Parameter #2 [ $ttl = ] + Parameter #0 [ array|string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ int $ttl = 0 ] } + - Return [ ?bool ] } Method [ public method get ] { - - Parameters [1] { - Parameter #0 [ $keys ] + - Parameters [2] { + Parameter #0 [ array|string $key ] + Parameter #1 [ mixed &$cas = NULL ] } + - Return [ ?bool ] } Method [ public method delete ] { - Parameters [2] { - Parameter #0 [ $keys ] - Parameter #1 [ $ttl = ] + Parameter #0 [ array|string $key ] + Parameter #1 [ int $delay = 0 ] } + - Return [ ?bool ] } Method [ public method flush ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method info ] { - Parameters [0] { } + - Return [ array ] } Method [ public method dump ] { - Parameters [1] { - Parameter #0 [ $limit = ] + Parameter #0 [ int $limit = 0 ] } + - Return [ ?array ] } } } -- cgit