util.datamanager: Load first item into index earlier

Should get rid of fseek() call
This commit is contained in:
Kim Alvefur 2023-11-27 00:14:56 +01:00
parent f5f64e3bdc
commit b97c4ffc16

View file

@ -424,7 +424,8 @@ local function get_list_index(username, host, datastore)
end
if ih then
return setmetatable({ file = ih }, index_mt);
local first_length = string.unpack(ih:read(index_item_size));
return setmetatable({ file = ih; { start = 0; length = first_length } }, index_mt);
end
local index, err = build_list_index(username, host, datastore);