constant Redis_Cache_Base::EVAL_DELETE_PREFIX in Redis 7.3
Same name and namespace in other branches
- 7.2 lib/Redis/Cache/Base.php \Redis_Cache_Base::EVAL_DELETE_PREFIX
Delete by prefix lua script
File
- lib/
Redis/ Cache/ Base.php, line 19
Class
- Redis_Cache_Base
- @todo
Code
const EVAL_DELETE_PREFIX = <<<EOT
local keys = redis.call("KEYS", ARGV[1])
for i, k in ipairs(keys) do
redis.call("DEL", k)
end
return 1
EOT
;