Skip to content

Commit e1d57d6

Browse files
authored
Merge branch 'main' into poc/unified-chunk-grid
2 parents 0f0576e + 2dc4036 commit e1d57d6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

changes/3845.doc.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove result="ansi" from code blocks in the user guide that were causing empty output cells in the rendered documentation.

docs/user-guide/experimental.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ such as a remote store for source data and a local store for persistent caching.
5555

5656
The 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"
5959
import 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)
126126
cache = CacheStore(
127127
store=source_store,
@@ -141,7 +141,7 @@ cache = CacheStore(
141141

142142
The 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
146146
data = zarr_array[0:50, 0:50] # First access - cache miss
147147
data = 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

233233
Here'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"
236236
import numpy as np
237237
import time
238238
from tempfile import mkdtemp

0 commit comments

Comments
 (0)