-
Notifications
You must be signed in to change notification settings - Fork 5
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
Make use of Memoizer to cache metadata for subsequent reads #20
Comments
This issue has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/speeding-up-metamorph-file-reading-with-bioformats/42532/25 |
I agree that it makes sense to tackle this as part of #12. I do not have insight into how to begin, without digging into the code myself, which I will not have time to do before next year, sorry. |
As #12 (splitting into separate readers/writers per file format) seems more involved, an immediate option might be to change this line:
... to something like: meta.setReader(new Memoizer(reader)); ... and see whether it works. 🤷 🙂 Will try when I find the time. |
This issue has been mentioned on Image.sc Forum. There might be relevant details there: |
Any SCIFIO format wrapping around Bio-Formats should ideally make use of
loci.formats.Memoizer
to speed up subsequent reads of the same file/dataset.Having a default reader plugin with this functionality for all file formats supported by Bio-Formats would greatly benefit the community. See also this discussion on the image.sc forum.
@hinerm, @ctrueden would you have pointers how to best approach this?
The text was updated successfully, but these errors were encountered: