mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
util.datamanager: Load first item into index earlier
Should get rid of fseek() call
This commit is contained in:
parent
f5f64e3bdc
commit
b97c4ffc16
1 changed files with 2 additions and 1 deletions
|
@ -424,7 +424,8 @@ local function get_list_index(username, host, datastore)
|
||||||
end
|
end
|
||||||
|
|
||||||
if ih then
|
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
|
end
|
||||||
|
|
||||||
local index, err = build_list_index(username, host, datastore);
|
local index, err = build_list_index(username, host, datastore);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue