mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories: - util.cache size, must be >= 1 - byte or item counts that logically can't be negative - port numbers that should be in 1..0xffff
This commit is contained in:
parent
55768509a3
commit
71ad48095d
26 changed files with 48 additions and 47 deletions
|
@ -35,7 +35,7 @@ local cache = setmetatable({}, { __mode = "v" });
|
|||
-- disk, which we want to avoid during routing. On the other hand, we don't
|
||||
-- want to use too much memory either, so this can be tuned by advanced
|
||||
-- users. TODO use science to figure out a better default, 64 is just a guess.
|
||||
local cache_size = module:get_option_number("blocklist_cache_size", 64);
|
||||
local cache_size = module:get_option_integer("blocklist_cache_size", 64, 1);
|
||||
local cache2 = require"prosody.util.cache".new(cache_size);
|
||||
|
||||
local null_blocklist = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue