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
The current implementation for glob matching is really inefficient, recursively invoking method for every * pattern, when many of those can be skipped altogether. For example, it breaks for simple match all request with 4k * appended together (assuming small size JVM like 512k):
Describe the bug
The current implementation for glob matching is really inefficient, recursively invoking method for every * pattern, when many of those can be skipped altogether. For example, it breaks for simple match all request with 4k * appended together (assuming small size JVM like 512k):
Extract from Glob.java
Solution
Can be written more efficiently by:
Related component
Search:Resiliency
To Reproduce
Expected behavior
There should not be any stack overflow error
The text was updated successfully, but these errors were encountered: