diff options
author | Remi Collet <remi@remirepo.net> | 2020-03-31 10:32:34 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-03-31 10:32:34 +0200 |
commit | d71c4e3b3024c1e16a9adca72e95112e3ef43b10 (patch) | |
tree | 79ce93682353d1663e48e9dda6bca63ff7f9162c /REFLECTION | |
parent | 5a0f2a4627ba2e0f1a967ad8cdfdcbc4c9736bfb (diff) |
update to 2.2.0
enable json, igbinary and msgpack serializers
rename configuration file to 50-yac.ini to ensure proper load order
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -1,4 +1,10 @@ -Extension [ <persistent> extension #112 yac version 2.1.2 ] { +Extension [ <persistent> extension #112 yac version 2.2.0 ] { + + - Dependencies { + Dependency [ msgpack (Required) ] + Dependency [ igbinary (Required) ] + Dependency [ json (Required) ] + } - INI { Entry [ yac.enable <SYSTEM> ] @@ -19,14 +25,21 @@ Extension [ <persistent> extension #112 yac version 2.1.2 ] { Entry [ yac.enable_cli <SYSTEM> ] Current = '0' } + Entry [ yac.serializer <SYSTEM> ] + Current = 'php' + } } - - Constants [5] { - Constant [ string YAC_VERSION ] { 2.1.2 } + - Constants [9] { + Constant [ string YAC_VERSION ] { 2.2.0 } Constant [ int YAC_MAX_KEY_LEN ] { 48 } Constant [ int YAC_MAX_VALUE_RAW_LEN ] { 67108863 } Constant [ int YAC_MAX_RAW_COMPRESSED_LEN ] { 1048576 } - Constant [ string YAC_SERIALIZER ] { PHP } + Constant [ int YAC_SERIALIZER_PHP ] { 0 } + Constant [ int YAC_SERIALIZER_MSGPACK ] { 2 } + Constant [ int YAC_SERIALIZER_IGBINARY ] { 3 } + Constant [ int YAC_SERIALIZER_JSON ] { 1 } + Constant [ int YAC_SERIALIZER ] { 0 } } - Classes [1] { |