We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i prepare to use hyperscan to match patterns like:
dict1 and dict2 are big string set (stored in file), like: dict1: jack rose mike ...
dict2: tom jerry lily ...
i transform my patterns by expanding strings of dict as:
because dict1 and dict2 is so large (>20MB) so transformed pattern is too large, so hyperscan raise error: "Pattern length exceeds limit"
beloved source code is : https://github.com/intel/hyperscan/blob/master/src/hs.cpp#L538 https://github.com/intel/hyperscan/blob/master/src/grey.cpp#L148
so can parameters limitPatternLength and limitLiteralCount be increased to match a large pattern with a dict?
The text was updated successfully, but these errors were encountered:
i modify limitPatternLength and limitLiteralCount to 1MB, and use large pattern to compile, and found hyperscan compile is too slow
Sorry, something went wrong.
No branches or pull requests
i prepare to use hyperscan to match patterns like:
dict1 and dict2 are big string set (stored in file), like:
dict1:
jack
rose
mike
...
dict2:
tom
jerry
lily
...
i transform my patterns by expanding strings of dict as:
because dict1 and dict2 is so large (>20MB)
so transformed pattern is too large, so hyperscan raise error:
"Pattern length exceeds limit"
beloved source code is :
https://github.com/intel/hyperscan/blob/master/src/hs.cpp#L538
https://github.com/intel/hyperscan/blob/master/src/grey.cpp#L148
so can parameters limitPatternLength and limitLiteralCount be increased to match a large pattern with a dict?
The text was updated successfully, but these errors were encountered: