-
Notifications
You must be signed in to change notification settings - Fork 84
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
Proposal: change regexp backend #306
Comments
The regexp engine implemented by the SATySFi library has the disadvantage of "Slow". |
After some investigation, I realized that ocaml-re does not support Unicode (ocaml/ocaml-re#24). So pcre-ocaml + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, SATySFi uses OCaml's
Str
module as the regexp backend. But it has some drawbacks:So, how about changing the regexp backend from
Str
to, say,ocaml-re
? It supports large subsets of PCRE, has nice performance, and has no global states. Or,pcre-ocaml
? It might be another choice not to have regexp primitives in the core, and use a library-implemented regexp engine, such as satysfi-base's.The text was updated successfully, but these errors were encountered: