Skip to content

Commit

Permalink
docs(kong.conf.default): update descriptions for `nginx_http_lua_rege…
Browse files Browse the repository at this point in the history
…x_cache_max_entries`

Leftover from KAG-719
  • Loading branch information
dndx authored Nov 3, 2023
1 parent b3851a6 commit 607a38e
Showing 1 changed file with 5 additions and 2 deletions.
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

0 comments on commit 607a38e

Please sign in to comment.