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
Profiles of an application that frequently queries Config data shows significant time in io.helidon.config.Config$Key.unescapeName(). String.replaceAll() is used for simple string replacement (no regex) resulting in Pattern compilation and regex evaluation:
Environment Details
Problem Description
Profiles of an application that frequently queries Config data shows significant time in io.helidon.config.Config$Key.unescapeName(). String.replaceAll() is used for simple string replacement (no regex) resulting in Pattern compilation and regex evaluation:
Using String.replace() will improve performance:
The text was updated successfully, but these errors were encountered: