-
Notifications
You must be signed in to change notification settings - Fork 57
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
More speed efficient #3
Comments
Absolutely true. I recently discovered |
Version Would be happy to have an example YAML (or bunch of them) for benchmark to actually set some metric so we know what we speak about. |
There are numerous other ways to get more speed out of shyaml: The code itself can be a little quicker (although, with the libyaml binding, is there a lot improvement left to be achieved ?):
Please note that a binary would have the added valuable benefit of not requiring python (well only Even blazing fast code, because we use shyaml in shell, will face the costly spawning of process... So:
On the road toward better performance, we could think of adding a switch in shyaml measuring time spent in it's actual code compared to the time spent in PyYAML. I'm not expecting a surprise here and do not think the python code here is so important in itself. The most important metric to move forward are :
|
The python implementation is desperately slow.
Might have to rewrite this in C if we want to go faster.
The text was updated successfully, but these errors were encountered: