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: docs/src/advanced.md
+93Lines changed: 93 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,4 +171,97 @@ This can be useful for performance when one expects to append many additional da
171
171
## Fallback Behaviour
172
172
By default JLD2 will attempt to open files using the `MmapIO` backend. If that fails, it retries using `IOStream`.
173
173
174
+
## Virtual Datasets
175
+
176
+
Virtual datasets (VDS) allow you to create datasets that reference data from multiple source files without copying the data. This is useful for combining large distributed datasets efficiently.
177
+
178
+
### Basic Usage
179
+
180
+
Create a virtual dataset mapping entire source files:
0 commit comments