You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from v2.9.0, h5py supports in-memory H5, which means one can allocate a segment of shared memory, within which a H5 object can live. If the frontend can do this, it will help avoid reading large data from disk in the backend.
Thoughts:
to actually save time, we want to reuse the same H5 many times before closing the shared memory. Is this the most common use case?
before killing the in-memory object, should we write it to disk? (I think so)
The text was updated successfully, but these errors were encountered:
Starting from v2.9.0, h5py supports in-memory H5, which means one can allocate a segment of shared memory, within which a H5 object can live. If the frontend can do this, it will help avoid reading large data from disk in the backend.
Thoughts:
The text was updated successfully, but these errors were encountered: