Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-05Correct misspelling of libzstd in config argsKarina Kwiatek
2021-07-20Add support for exponential backoff on retryNathaniel Braun
2021-03-10Fix typo in config.m4michael-grunder
2020-07-02fix configure message (#1803)Remi Collet
2020-07-01check for hash extension during the buildRemi Collet
2020-06-26use pkg-config for liblz4Remi Collet
2020-06-26fix test syntaxRemi Collet
2020-06-26use pkg-config for libzstd and liblzfRemi Collet
2020-06-26copy/paste errRemi Collet
2020-06-26fix lz4 library nameRemi Collet
2020-06-08Rebased LZ4 PR (#1781)Michael Grunder
LZ4 compression by @iliaal
2020-05-21bugfix: PHP_REDIS_JSON parameter at configuremi-nakano
2020-02-07Add RedisSentinel class and testsPavlo Yatsukhnenko
2019-07-09Add support for Zstd compressionRemi Collet
2019-06-21Bikeshedding error messagemichael-grunder
2019-06-21Cleanup version check outputmichael-grunder
2019-06-21Require msgpack > 2.0.3michael-grunder
Although the msgpack version numbers appear to be x.y.z[-dev], I'm testing as if it were w.x.y.z[-dev] in case this ever changes. Right now the $4 is the same as adding 0.
2019-06-21Issue #1577Pavlo Yatsukhnenko
Remove checking of version of msgpack. Allow to disable json serializer. Fix tests.
2019-03-23msgpack 2.0.3 or greater requiredPavlo Yatsukhnenko
2019-03-23We're only compatible with PHP7 now \o/michael-grunder
This update fixes merge conflicts that would have prevented us from merging the msgpack PR (#1050).
2019-03-23Cleanup rebase artifact and move msgpack to serializer sectionmichael-grunder
2019-03-23rebase msgpack pull request (#801) on develop branchB. Gortney
2018-04-04Issue #1325Pavlo Yatsukhnenko
2018-02-26Show git revision in phpinfoPavlo Yatsukhnenko
2017-10-17fix config.m4Pavlo Yatsukhnenko
2017-10-17Issue #1048Pavlo Yatsukhnenko
Add --with-liblzf configure option to use system liblzf. Use exponentially growing buffer for lzf_decompress. Move liblzf files to separeted dir in package.xml.
2017-10-17Issue #1048Pavlo Yatsukhnenko
This commit is adding support of data compression. LZF was choosen because it small and fast and Redis server uses it. Since [pecl package](https://pecl.php.net/package/lzf) doesn't provide lzf.h file after installing, LZF library was added as submodule. Another algorythms may be easely added by analogy with serializers. TODO: unit-tests for different data types.
2015-05-06Initial commit of redis_commands.cmichael-grunder
Given that non cluster and cluster based redis objects should act exactly the same way (in terms of argument handling/processing) we're extracting the parsing of arguments and command construction from being directly inside of the PHP_METHOD itself. This way, we don't repeat ourselves having two identical places where we do this but in a slightly different way. Every command takes a RedisSock pointer (coming from redis_sock_get in a standard redis class, and cluster->flags in a cluster). If we're passed a pointer for slot, we'll hash one of the keys to return it's proper slot.
2015-05-05Initial commit of RedisCluster class and librarymichael-grunder
This is an initial commmit which adds a RedisCluster class as well as the framework around which we'll be building proper cluster support. The first commit just contains the code to set up and use our new RedisCluster class as well as parsing logic to handline CLUSTER NODES such that we can map the keyspace. Next up, command processing and then pipelining in a sane way.
2012-10-25Fix include path for igbinary supportAndrew Sitnikov
2012-09-02Remove igbinary from config.m4Nicolas Favre-Felix
2011-08-19RefactoringNicolas Favre-Felix
2011-08-18RedisArray constructorNicolas Favre-Felix
2011-06-26Added configure flag to disable sessions.Nicolas Favre-Felix
2010-12-13Added igbinary.Nicolas Favre-Felix
2010-12-02New feature: PHP session handler.Nicolas Favre-Felix
2010-04-01re-organize code, init pipelineNasreddine Bouafif
2009-11-13Initial commitNicolas Favre-Felix