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
Store.delete
LocalStore.delete removes entire directory trees, i.e. many objects:
LocalStore.delete
zarr-python/src/zarr/storage/local.py
Lines 206 to 213 in 4c3081c
MemoryStore.delete removes single keys, i.e. just one object:
MemoryStore.delete
zarr-python/src/zarr/storage/memory.py
Lines 134 to 140 in 4c3081c
We should pick one of the two options. The fact that we got this far with such skew also means that our store tests should be made more extensive.
The text was updated successfully, but these errors were encountered:
Good catch! Store.delete should be for a single key. In #2430, I introduce delete_dir for removing all objects below a node in a hierarchy.
delete_dir
Sorry, something went wrong.
No branches or pull requests
LocalStore.delete
removes entire directory trees, i.e. many objects:zarr-python/src/zarr/storage/local.py
Lines 206 to 213 in 4c3081c
MemoryStore.delete
removes single keys, i.e. just one object:zarr-python/src/zarr/storage/memory.py
Lines 134 to 140 in 4c3081c
We should pick one of the two options. The fact that we got this far with such skew also means that our store tests should be made more extensive.
The text was updated successfully, but these errors were encountered: