去掉缓存驱动的length参数

This commit is contained in:
thinkphp
2016-06-03 12:20:18 +08:00
parent e37cf2cc17
commit f05e7427d9
11 changed files with 16 additions and 27 deletions

View File

@@ -17,7 +17,7 @@ use think\Exception;
/**
* Redis缓存驱动适合单机部署、有前端代理实现高可用的场景性能最好
* 有需要在业务层实现读写分离、或者使用RedisCluster的需求请使用Redisd驱动
*
*
* 要求安装phpredis扩展https://github.com/nicolasff/phpredis
* @author 尘缘 <130775@qq.com>
*/
@@ -31,7 +31,6 @@ class Redis
'timeout' => 0,
'expire' => 0,
'persistent' => false,
'length' => 0,
'prefix' => '',
];