Cache的key使用了包含冒号的字符串
Cache key \"creators:hot\" contains reserved characters \"{}()/\\@:\".
建议去除冒号为保留字符,因为冒号在redis的key中很常用
public const RESERVED_CHARACTERS = '{}()/\@:';
这个常量应该怎么重写
用 redis 替换 cache
大佬,你这个怎么去掉这保留字符的限制的呀
php.init 配置中 修改 zend.assertions = -1 可以绕过这个验证
public const RESERVED_CHARACTERS = '{}()/\@:';
这个常量应该怎么重写
用 redis 替换 cache
大佬,你这个怎么去掉这保留字符的限制的呀
php.init 配置中 修改 zend.assertions = -1 可以绕过这个验证