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
Currently, to load a large pdf file (i.e. bible.pdf of ~700pages) it takes 72 secs.
Here the profile data:
As we can see the biggest bottleneck is the load_memory_map at line 86 function (which is almost 4x slower the generating the xml file).
Other than simply making it go faster... a good approach may be to start loading the pages while the file gets generated.
We should be able to start reading the file while it gets written.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, to load a large pdf file (i.e. bible.pdf of ~700pages) it takes 72 secs.
Here the profile data:
As we can see the biggest bottleneck is the load_memory_map at line 86 function (which is almost 4x slower the generating the xml file).
Other than simply making it go faster... a good approach may be to start loading the pages while the file gets generated.
We should be able to start reading the file while it gets written.
The text was updated successfully, but these errors were encountered: