@@ -55,7 +55,7 @@ such as a remote store for source data and a local store for persistent caching.
5555
5656The CacheStore provides significant performance improvements for repeated data access:
5757
58- ``` python exec="true" session="experimental" source="above" result="ansi"
58+ ``` python exec="true" session="experimental" source="above"
5959import time
6060
6161# Benchmark reading with cache
@@ -121,7 +121,7 @@ cache = CacheStore(
121121
122122** cache_set_data** : Controls whether written data is cached
123123
124- ``` python exec="true" session="experimental" source="above" result="ansi"
124+ ``` python exec="true" session="experimental" source="above"
125125# Cache data when writing (default)
126126cache = CacheStore(
127127 store = source_store,
@@ -141,7 +141,7 @@ cache = CacheStore(
141141
142142The CacheStore provides statistics to monitor cache performance and state:
143143
144- ``` python exec="true" session="experimental" source="above" result="ansi"
144+ ``` python exec="true" session="experimental" source="above"
145145# Access some data to generate cache activity
146146data = zarr_array[0 :50 , 0 :50 ] # First access - cache miss
147147data = zarr_array[0 :50 , 0 :50 ] # Second access - cache hit
@@ -232,7 +232,7 @@ of source and cache stores for your specific use case.
232232
233233Here's a complete example demonstrating cache effectiveness:
234234
235- ``` python exec="true" session="experimental-final" source="above" result="ansi"
235+ ``` python exec="true" session="experimental-final" source="above"
236236import numpy as np
237237import time
238238from tempfile import mkdtemp
0 commit comments