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
When using a relative path, we end up calling the getcwd syscalls 8 times per commit with the mmapdirectory. Overall we end up losing ~0.1ms on this.
getcwd
~0.1ms
It is not too terrible but still... It would be nicer to canonicalize our root Path once and for all when we open the directory.
The text was updated successfully, but these errors were encountered:
canonicalize path when opening MmapDirectory
MmapDirectory
8bca958
fixes quickwit-oss#1229
07c8c13
246edb0
canonicalize path when opening MmapDirectory (#1231)
c980b19
* canonicalize path when opening `MmapDirectory` fixes #1229
Successfully merging a pull request may close this issue.
When using a relative path, we end up calling the
getcwd
syscalls 8 times per commit with the mmapdirectory.Overall we end up losing
~0.1ms
on this.It is not too terrible but still... It would be nicer to canonicalize our root Path once and for all when we open the directory.
The text was updated successfully, but these errors were encountered: