views:

84

answers:

1

As the title, I'm looking for a php Redis client that support persistent connection, because my web application receives a lot of requests(each request, it'll put an item in to Redis queue) and I want to avoid create new connection every request.

+1  A: 

Not sure if this is supported but you should definitely look at Predis and Rediska, this two (especially Predis AFAIK) are the best PHP Redis clients available.

antirez
thank you antirez, I've never tried Predis before, it seem support persistent connection, I believe that a C implementation as php-module should be faster, but i'll try them and take a comparison.
secmask