我需要从空间users
获取一些记录。
此空间具有辅助索引category_status_rating
。
我需要选择category=1
,status=1
,rating<=123456789
:
for _, user in box.space.users.index.category_status_rating:pairs({ 1, 1, 123456789 }, { limit = 20, offset = 5, iterator = box.index.LE }) do
if user[categoryIdx] ~= 1 or user[statusIdx] ~= 1 then break end
table.insert(users, user)
end
据我所知,indexName:pairs
的迭代不支持limit
,我只能使用自己的计数器。但是offset
呢?我可以使用这个参数并从我需要的“页面”开始吗?或者我会在没有任何offset
的情况下进行迭代并传递无用的记录(大约100000)并在我的“页面”开始时开始table.insert(users, user)
?
谢谢!
答案 0 :(得分:3)
如果您真的需要,可以保存您的位置(这将是最后检查的元组),而不是使用偏移量。 e.g:
local last = 123456789
for i = 1, 2 do
local count = 0
for _, user in box.space.users.index.category_status_rating:pairs({1, 1, last}, { iterator = box.index.LE }) do
if user[categoryIdx] ~= 1 or user[statusIdx] ~= 1 or count > 20 then
break
end
table.insert(users, user)
last = user[LAST_INDEX_FIELD]
count = count + 1
end
-- process your tuples
end
或者,使用luafun(其中drop_n
类似于限制,保存到last
类似于偏移量):
local last = 123456789
for i = 1, 2 do
local users = box.space.users.index.category_status_rating:pairs({1, 1, last}, { iterator = box.index.LE }):take_n(20):map(function(user)
last = user[LAST_INDEX_FIELD]
return user
end):totable()
-- process your tuples
end