Tarantool:index.indexName中的limit / offset:对调用

时间:2016-03-30 11:27:45

标签: lua high-load tarantool nosql

我需要从空间users获取一些记录。 此空间具有辅助索引category_status_rating。 我需要选择category=1status=1rating<=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)? 谢谢!

1 个答案:

答案 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

Documentation on LuaFun,即embedded into Tarantool