Increased MAX_TOTAL_DOMAIN_RULES to 200000

Implements #7241
This commit is contained in:
Luca 2023-02-22 16:14:51 +01:00
parent 676deedbbe
commit c2b81fdaa3
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ local SIXH_DOWNLOAD_INTERVAL = 21600
local MAX_TOTAL_IP_RULES = 1000000
-- Domain rules are the most expensive.
-- On average they take ~7.5 KB/domain. 40k rules are loaded in about 7 seconds.
local MAX_TOTAL_DOMAIN_RULES = 90000
local MAX_TOTAL_DOMAIN_RULES = 200000
-- JA3 rules use hash tables, so they are fast to load
local MAX_TOTAL_JA3_RULES = 200000