If I check the redis Client list, there are 4 for PHP: Redis PHP Bindings, phpredis, Predis, Redisent.

Question is, which is the best and good to use?

Thanks!

link|improve this question

feedback

11 Answers

up vote 25 down vote accepted

redis.php/phpredis is recommended against on the redis wiki.

Predis is under active development.

The rediska website does not load.

Redisent is designed to be simple and is not under active development.

Given these, I would go with Predis

link|improve this answer
active development is a good thing ... – Alfred Jan 17 '10 at 19:45
Predis, personally I don't use, but I have heard very good reviews. – James Hartig Jan 18 '10 at 5:54
4  
I'm currently developing a project using Predis, and it is very good. Also, the development is very active -- updates coming as quick as they are on Redis itself! :) – mkgrunder Apr 24 '10 at 19:32
1  
>>redis.php/phpredis is recommended against on the redis wiki.<< Don't know if this was true in the past, but it is recommended now. And as a module, it's probably the best choice. – joedevon Dec 7 '11 at 20:04
feedback

So far I am pretty happy with owlient phpredis: http://github.com/owlient/phpredis

They have been incredibly fast to respond to any issues I have filed against them (feature requests and compatibility issues with 2.0RC1 right after it came out). The codebase seems sound, and hasn't ever given us trouble.

I like that there's not a ton of object soup involved, using it is very straightforward, just like Redis!

I also like the fact that it's a PHP module, so it should be more efficient than a pure PHP client.

link|improve this answer
feedback

owlient's code is forked and taken over by nicolasff. I'd suggest to use that one.

https://github.com/nicolasff/phpredis

Compared to others I found this implementation straightforward, clean in the same style as the Redis itself and as other classes in PHP.

link|improve this answer
feedback

Rediska web site work well http://rediska.geometria-lab.net/

link|improve this answer
feedback

We are using owlient phpredis on an high traffic website (5M Page views/day) and each page is making a call to redis using that client...works like a charm and we nearly see any CPU activity link to this. We use a distributed redis system with a master inserting/updating the values and slaves for only reading.

link|improve this answer
feedback

Check out the latest suggested client list here:

http://redis.io/clients#PHP

Predis and phpredis are currently recommended.

link|improve this answer
feedback

Try php5 redis

link|improve this answer
feedback

Well, I would suggest Redisent as recently revamped to work with the current protocol, http://dev.af83.com/redis/which-php-library-use-redis/2010/12/30

link|improve this answer
feedback

This is my PHP-client:
https://github.com/jamm/Memory/blob/master/RedisServer.php

link|improve this answer
feedback

I've benchmarked all of the PHP clients for Redis. Don't waste your time cuz the performance sucks. Redis claims 110,000 GET/s when in reality, you'll be lucky to get 7500/s with PHP with a single client.

link|improve this answer
3  
Network latency is obviously going to have a huge impact in the number of GET/sec you can get with one client. Redis should really shine when you have a bunch of clients hitting it. – Jay Paroline Jun 4 '10 at 4:04
feedback

@Troubled 7,500 is still huge. I believe with pure Redis lib such https://github.com/jamm/Memory/blob/master/RedisServer.php , result will be even lower. But this library is still very good for people on shared hosting, where they can not install binary module.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.