php1:php-redisc语言开发,效率高。使用前需要安装phpredis扩展。缺点是一些底层代码需要查看对应的C代码。有些框架(比如thinkphp)在操作redis的时候会优先使用php-redis。一般推荐使用参考https://github.com/phpredis/p...2:predis/predis使用php开发的redis客户端。效率会比php-redis低。不需要安装相应的扩展。在某些框架(laravel)中,它会被首先使用。据说以后不再维护了。参考https://github.com/predis/predisgogo-redisgithub上的一个go-redis客户端,star比较多。Redis的客户端参考https://github.com/go-redis/r...gomodule/redigoGo客户端,在beego中对redis的操作使用参考https://github.com/gomodule/r。..
