Releases: b1rdex/predis-compressible
Releases · b1rdex/predis-compressible
1.1
1.0
1.0-rc
Full Changelog: 0.6...1.0-rc
0.6
Full Changelog: 0.5.1...0.6
0.5.1
0.4.1
0.4: StringGetMultiple for use with Symfony Cache (#3)
* StringGetMultiple for use with Symfony Cache Since Symfony 3.4.23 (not sure about 2.x, 4.x branches) Symfony went with mget Usage of the following is no longer valid as it tries to unserialize an invalid value. ``` $profile->defineCommand('SET', StringSet::class); $profile->defineCommand('SETEX', StringSetExpire::class); $profile->defineCommand('SETNX', StringSetPreserve::class); $profile->defineCommand('GET', StringGet::class); ``` Emm, so we need ```$profile->defineCommand('MGET', StringGetMultiple::class);``` Note: `is_array` check is required as mget gets an array, but if only a single key is requested, the call to `self::normalizeArguments` returns a single (`string`? I think also possibly `null`) value * add test