Skip to content

Commit 67b8be2

Browse files
committed
found another DEL
1 parent ead676a commit 67b8be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Cache/Adapter/RedisTagAwareAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ protected function doDeleteYieldTags(array $ids): iterable
149149
{
150150
$lua = <<<'EOLUA'
151151
local v = redis.call('GET', KEYS[1])
152-
redis.call('DEL', KEYS[1])
152+
redis.call('UNLINK', KEYS[1])
153153
154154
if not v or v:len() <= 13 or v:byte(1) ~= 0x9D or v:byte(6) ~= 0 or v:byte(10) ~= 0x5F then
155155
return ''

0 commit comments

Comments
 (0)