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
In PR ( #131 ), KvikIO's GDSStore implemented getitems (effectively a vectored IO gather API). It would be nice to have a scatter implementation (to allow multiple writes at once)
Fortunately Zarr's BaseStore already inherits from MutableMapping, which supplies an update method (analogous to dict's update method) that can already take multiple items to add to a collection
So for KvikIO's GDSStore to add a scatter implementation would be as simple as overriding the update method in this class
The text was updated successfully, but these errors were encountered:
In PR ( #131 ), KvikIO's
GDSStore
implementedgetitems
(effectively a vectored IO gather API). It would be nice to have a scatter implementation (to allow multiple writes at once)Fortunately Zarr's
BaseStore
already inherits fromMutableMapping
, which supplies anupdate
method (analogous todict
'supdate
method) that can already take multiple items to add to a collectionSo for KvikIO's
GDSStore
to add a scatter implementation would be as simple as overriding theupdate
method in this classThe text was updated successfully, but these errors were encountered: