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!
|
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!
| ||||
|
feedback
|
|
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 | |||||||||||||
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. | |||
|
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. | |||
|
feedback
|
|
Rediska web site work well http://rediska.geometria-lab.net/ | ||||
|
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. | |||
|
feedback
|
|
Check out the latest suggested client list here: Predis and phpredis are currently recommended. | |||
|
feedback
|
|
Try php5 redis | |||
|
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 | |||
|
feedback
|
|
This is my PHP-client: | |||
|
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. | |||||
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. | |||
|
feedback
|