From f8cbbc5b8f8322ea6ecbb4986c8f0060034f863d Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Fri, 28 Dec 2012 20:49:16 +0100 Subject: [PATCH] Update URL for phpiredis. Ownership of the repository has been transferred. Thanks again to @seppo0010, the original author of phpiredis, for his work on the extension! [ci skip] --- FAQ.md | 8 ++++---- README.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/FAQ.md b/FAQ.md index 414d3d5c..b18a5b74 100644 --- a/FAQ.md +++ b/FAQ.md @@ -124,10 +124,10 @@ to how your application will use Redis. ### I am convinced, but performances for multi-bulk replies (e.g. _KEYS *_) are still worse ### Fair enough, but there is actually an option for you if you need even more speed and it consists on -installing __[phpiredis](http://github.com/seppo0010/phpiredis)__ (note the additional _i_ in the -name) and let Predis using it. __phpiredis__ is a C-based extension that wraps __hiredis__ (the -official Redis C client library) with a thin layer that exposes its features to PHP. You will now -get the benefits of a faster protocol parser just by adding a single line of code in your application: +installing __[phpiredis](http://github.com/nrk/phpiredis)__ (note the additional _i_ in the name) +and let Predis using it. __phpiredis__ is a C-based extension that wraps __hiredis__ (the official +Redis C client library) with a thin layer that exposes its features to PHP. You will now get the +benefits of a faster protocol parser just by adding a single line of code in your application: $client = new Predis\Client('tcp://127.0.0.1', array( 'connections' => array('tcp' => 'Predis\Connection\PhpiredisConnection') diff --git a/README.md b/README.md index 3de598a8..05f03397 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Predis is a flexible and feature-complete PHP (>= 5.3) client library for the Redis key-value store. The library does not require any additional extension loaded in PHP but it can be optionally paired -with the [phpiredis](https://github.com/seppo0010/phpiredis) C extension to lower the overhead of +with the [phpiredis](https://github.com/nrk/phpiredis) C-based extension to lower the overhead of serializing and parsing the Redis protocol. Predis is also available in an asynchronous fashion through the experimental client provided by the [Predis\Async](http://github.com/nrk/predis-async) library. @@ -117,7 +117,7 @@ $replies = $redis->pipeline(function ($pipe) { ### Multiple and customizable connection backends ### Predis can optionally use different connection backends to connect to Redis. One of them leverages -the [phpiredis](http://github.com/seppo0010/phpiredis) C extension resulting in a major speed bump +the [phpiredis](http://github.com/nrk/phpiredis) C-based extension resulting in a major speed bump especially when dealing with long multibulk replies (the `socket` extension is also required): ``` php @@ -255,7 +255,7 @@ history [on its project page](http://travis-ci.org/nrk/predis). - [Lorenzo Castelli](http://github.com/lcastelli) - [Jordi Boggiano](http://github.com/Seldaek) ([twitter](http://twitter.com/seldaek)) - [Sebastian Waisbrot](http://github.com/seppo0010) ([twitter](http://twitter.com/seppo0010)) - for his work on extending [phpiredis](http://github.com/seppo0010/phpiredis) for Predis + for his past work on extending [phpiredis](http://github.com/nrk/phpiredis) for Predis. ## License ##