From 2a9e0ccd3c0b1aef9108f5ce427c939cf08e884a Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Mon, 9 Jan 2023 11:58:45 +0100 Subject: [PATCH] lpos command --- src/redis.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/redis.lua b/src/redis.lua index 98b4710..00781e1 100644 --- a/src/redis.lua +++ b/src/redis.lua @@ -1016,6 +1016,7 @@ redis.commands = { lpushx = command('LPUSHX'), -- >= 2.2 linsert = command('LINSERT'), -- >= 2.2 brpoplpush = command('BRPOPLPUSH'), -- >= 2.2 + lpos = command('LPOS'), -- >= 6.0.6 -- commands operating on sets sadd = command('SADD'),