# HG changeset patch # User Kim Alvefur # Date 1553216674 -3600 # Node ID 5669bb11ac7bb3ff23d26ffcd2e54097a3d91943 # Parent 69f8100148535824165b1af3c4baca7cd7972f58 mod_storage_internal: Increase default quota to 10 000 Performance doesn't seem great but 10k should be far enough from limits inherited by the Lua parser. 1000 messages seemed pretty close to what an active user might produce in one week. diff -r 69f810014853 -r 5669bb11ac7b plugins/mod_storage_internal.lua --- a/plugins/mod_storage_internal.lua Wed Mar 20 12:14:45 2019 +0100 +++ b/plugins/mod_storage_internal.lua Fri Mar 22 02:04:34 2019 +0100 @@ -9,7 +9,7 @@ local host = module.host; -local archive_item_limit = module:get_option_number("storage_archive_item_limit", 1000); +local archive_item_limit = module:get_option_number("storage_archive_item_limit", 10000); local archive_item_count_cache = cache.new(module:get_option("storage_archive_item_limit_cache_size", 1000)); local driver = {};