···1212# This is used only if logging.output is "file".
1313file_path = "/var/log/alky.log"
14141515+[ratelimit]
1616+# rate: The steady-state rate of requests allowed (r in GCRA)
1717+# Defines how many requests are allowed per second in normal conditions
1818+# Type: Integer
1919+rate = 250
2020+2121+# burst: Maximum number of requests allowed to exceed the steady-state rate temporarily
2222+# Allows for short bursts of traffic above the defined rate
2323+# Type: Integer
2424+burst = 500
2525+2626+# window: The interval (in seconds) at which the rate limit is checked and potentially reset
2727+# Implements a sliding window rate limit mechanism
2828+# Type: Integer
2929+window = 3
3030+3131+# expiration_time: Duration (in seconds) for keeping a client's rate limit data in memory
3232+# After this period of inactivity, a client's rate limit data is removed to free up memory
3333+# Type: Integer
3434+expiration_time = 300
3535+3636+1537[advanced]
1638# Timeout (in milliseconds) for outgoing queries before being cancelled.
1739query_timeout = 100