File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ is a significant factor. You can use different store types for source and cache:
86
86
>>> # Create a remote store (S3 example) - for demonstration only
87
87
>>> remote_store = FsspecStore.from_url(' s3://bucket/data.zarr' , storage_options = {' anon' : True }) # doctest: +SKIP
88
88
>>>
89
- >>> # Use a local store for persistent caching
89
+ >>> # Use a local store for persistent caching
90
90
>>> local_cache_store = LocalStore(' cache_data' ) # doctest: +SKIP
91
91
>>>
92
92
>>> # Create cached store with persistent local cache
@@ -96,7 +96,7 @@ is a significant factor. You can use different store types for source and cache:
96
96
... max_size= 512 * 1024 * 1024 # 512MB cache
97
97
... )
98
98
>>>
99
- >>> # Open array through cached store
99
+ >>> # Open array through cached store
100
100
>>> z = zarr.open(cached_store) # doctest: +SKIP
101
101
102
102
The first access to any chunk will be slow (network retrieval), but subsequent accesses
You can’t perform that action at this time.
0 commit comments