mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_storage_sql: Cache total count if it's calculated as part of the current query
This commit is contained in:
parent
56a9e395ad
commit
5029870d3e
1 changed files with 3 additions and 0 deletions
|
@ -384,6 +384,9 @@ function archive_store:find(username, query)
|
|||
total = row[1];
|
||||
end
|
||||
end
|
||||
if query.start == nil and query.with == nil and query["end"] == nil and query.key == nil then
|
||||
archive_item_count_cache:set(cache_key, total);
|
||||
end
|
||||
if query.limit == 0 then -- Skip the real query
|
||||
return noop, total;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue