Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/user-guide/v3_migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ The following stores have been renamed or changed:
| `DirectoryStore` | [`zarr.storage.LocalStore`][] |
| `FSStore` | [`zarr.storage.FsspecStore`][] |
| `TempStore` | Use [`tempfile.TemporaryDirectory`][] with [`LocalStore`][zarr.storage.LocalStore] |
| `zarr.


A number of deprecated stores were also removed.
Expand All @@ -167,6 +166,9 @@ See issue #1274 for more details on the removal of these stores.
N5 formatted data.
- `ABSStore` - use the [`zarr.storage.FsspecStore`][] instead along with fsspec's
[adlfs backend](https://github.com/fsspec/adlfs).
- `LRUStoreCache` - no direct equivalent in Zarr-Python 3. Caching behaviour can be

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe this can be updated to refer to the CacheStore that we added to the experimental module.

achieved by wrapping a store with a third-party caching layer, or by using an
`FsspecStore` with a caching filesystem (e.g. `fsspec.implementations.caching`).
- `DBMStore`
- `LMDBStore`
- `SQLiteStore`
Expand Down
Loading