You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+56Lines changed: 56 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,6 +178,62 @@ with pynwb.NWBHDF5IO(file=h, mode="r") as io:
178
178
print(test_timeseries)
179
179
```
180
180
181
+
## Using the Local Cache
182
+
183
+
LINDI includes a local caching feature that significantly improves performance when accessing remote files by storing frequently accessed data chunks locally. The cache uses SQLite as its storage backend and is particularly beneficial when repeatedly accessing the same remote datasets.
184
+
185
+
**Basic cache usage**
186
+
187
+
```python
188
+
import lindi
189
+
190
+
# Create a local cache (defaults to ~/.lindi/cache)
0 commit comments