You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EVAL "local currentDate = KEYS[1]; local result = {}; for i, key in pairs(redis.call('KEYS', '2023????')) do if tonumber(key) < tonumber(currentDate) then redis.call('DEL', key); table.insert(result, key); end end; redis.call('EXPIRE', currentDate, 86400); return result" 1 20230323 ;
When I copy and paste this script into the client, all content after the '<' (less than) sign is lost. I have to manually input the '<' sign and then paste the remaining content into the client separately.
OS & version: [Windows 10 21H2]
Redis-Server version [2021.2]
The text was updated successfully, but these errors were encountered:
This is the content of my script.
EVAL "local currentDate = KEYS[1]; local result = {}; for i, key in pairs(redis.call('KEYS', '2023????')) do if tonumber(key) < tonumber(currentDate) then redis.call('DEL', key); table.insert(result, key); end end; redis.call('EXPIRE', currentDate, 86400); return result" 1 20230323 ;
When I copy and paste this script into the client, all content after the '<' (less than) sign is lost. I have to manually input the '<' sign and then paste the remaining content into the client separately.
The text was updated successfully, but these errors were encountered: