PHP CodeIgniter 演示代码::// 使用 redis 缓存 $cache = Services::cache();$cache->save(\'test-aaaaaaaa\', \'hahaha\', 60 * 10);我觉得应该是这样的纯字符串:...
PHP CodeIgniter 演示代码::
// using redis cache
$cache = Services::cache();
$cache->save("test-aaaaaaaa", "hahaha", 60 * 10);
我认为它应该是一个像这样的纯字符串:
Key: test-aaaaaaaa
Type: string
Value: hahaha
但最终存储的结果是这样的
Key: test-aaaaaaaa
Type: hash
Value: [__ci_type:string, __ci_value:hahaha]
因此结果是 CI 特定的,不能与其他语言共享。
有没有什么好的解决方案可以使用 redis 纯字符串进行 CI
CodeIgniter redis 值使用纯字符串,而不是哈希
CodeIgniter 使用的 Redis 缓存不是纯字符串,不能与其他语言共享
下载声明:
本站所有软件和资料均为软件作者提供或网友推荐发布而来,仅供学习和研究使用,不得用于任何商业用途。如本站不慎侵犯你的版权请联系我,我将及时处理,并撤下相关内容!