You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using nginx for many projects, there is a possibility to add the use of nginx variables in the query, for example: replace_filter /$project/ /, - or: replace_filter "/$project/" /
The text was updated successfully, but these errors were encountered:
Nginx variables are not supported (yet) in the pattern arguments. And to make this feature really useful, we'll have to implement an LRU-based compiled regex cache for it as well, because regex compilation is expensive.
* feature: first draft of implementation (TEST 1 ~ 45 in 01-sanity.t are now passing).
* more progress.
* no -O2.
* tests: 04-capturing.t now fully passes.
* tests: 07-multi.t now passes fully.
* enabled more optimizations.
Co-authored-by: Yichun Zhang (agentzh) <[email protected]>
I'm using nginx for many projects, there is a possibility to add the use of nginx variables in the query, for example: replace_filter /$project/ /, - or: replace_filter "/
$project
/" /The text was updated successfully, but these errors were encountered: