我正在尝试使用redis作为laravel 5中的缓存存储。predis运行良好,但redis pcel扩展要快得多。
在l5中使用redis pcel扩展的步骤是什么?
The only hint the docs给我的是重命名别名,我做到了,但我仍然得到一个“类'predis\client'not found'异常。
最佳答案
是啊。
从Redis
中删除app.aliases
别名,并在RedisServiceProvider
中注册自己的app.providers
。我还添加了一个自定义RedisDatabase
。
https://gist.github.com/tillkruss/27eda66e77280f1ba727
关于php - Laravel 5:使用Redis PCEL扩展,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29097953/