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

Make Regex Dictionary More Performant for Literals #14

Open
ColmBhandal opened this issue Jun 11, 2020 · 0 comments
Open

Make Regex Dictionary More Performant for Literals #14

ColmBhandal opened this issue Jun 11, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@ColmBhandal
Copy link
Owner

String literal, non-regex matches are a special case of a regex that can be checked in O(1) time by simply storing them in a separate dictionary. Whenever someone adds a string literal to the regex dictionary i.e. RegexPatternDictionaryImpl, we should therefore store it in the backend in a separate dictionary of literals which we can check much more efficiently than looping through all regexes.

@ColmBhandal ColmBhandal added the enhancement New feature or request label Jun 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant