Redis 的 Set 數(shù)據(jù)結(jié)構(gòu)不支持直接的交集運(yùn)算,但你可以通過執(zhí)行一些額外的命令來實(shí)現(xiàn)這個(gè)功能
SMEMBERS set1
SMEMBERS set2
LINTERNSET
命令找到兩個(gè)列表的交集:LINTERNSET list1 list2
SMEMBERS intersection_set
LRANGE intersection_set 0 -1
這是一個(gè)簡單的例子,假設(shè)我們有兩個(gè)集合 set1
和 set2
,我們想要找到它們的交集并將結(jié)果存儲(chǔ)在 intersection_set
中:
SMEMBERS set1
SMEMBERS set2
LINTERNSET list1 list2
SMEMBERS intersection_set
如果你想要批量處理多個(gè)集合的交集,可以使用 Lua 腳本來實(shí)現(xiàn)更高效的操作。這是一個(gè)示例 Lua 腳本,用于計(jì)算兩個(gè)集合 key1
和 key2
的交集并將結(jié)果存儲(chǔ)在 destination_key
中:
local intersection_set = {}
local set1 = redis.call('SMEMBERS', KEYS[1])
local set2 = redis.call('SMEMBERS', KEYS[2])
for _, value in ipairs(set1) do
if redis.call('SREM', KEYS[2], value) then
table.insert(intersection_set, value)
end
end
return intersection_set
你可以使用 EVAL
命令執(zhí)行此腳本:
EVAL script 2 set1 set2 destination_key
這將返回一個(gè)包含交集元素的列表。