Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(kong.conf.default): update descriptions for `nginx_http_lua_rege… #11912

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions kong.conf.default
Original file line number Diff line number Diff line change
Expand Up @@ -1176,9 +1176,12 @@
# roughly 2 seconds.

#nginx_http_lua_regex_cache_max_entries = 8192 # Specifies the maximum number of entries allowed
# in the worker process level compiled regex cache.
# in the worker process level PCRE JIT compiled regex cache.
# It is recommended to set it to at least (number of regex paths * 2)
# to avoid high CPU usages.
# to avoid high CPU usages if you manually specified `router_flavor` to
# `traditional`. `expressions` and `traditional_compat` router does
# not make use of the PCRE library and their behavior
# is unaffected by this setting.

#nginx_http_keepalive_requests = 1000 # Sets the maximum number of client requests that can be served through one
# keep-alive connection. After the maximum number of requests are made,
Expand Down