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
Bump to v0.4.0, update README for volume-based storage, fix Linux alloca
- Update README: persistence docs for v0.4.0 volume-based engine
(checkpoint_interval, sync_mode, compact_threshold, volume_compression)
- Add test verifying volumes/ directory creation and PRAGMA CHECKPOINT
- Fix Linux build: add #include <alloca.h> for non-Windows platforms
- Format JS/TS files with prettier
- Bump all versions to 0.4.0
File-based databases persist data to disk using WAL (Write-Ahead Logging) and periodic snapshots. Data survives process restarts.
130
+
File-based databases persist data to disk using WAL (Write-Ahead Logging) and an immutable volume-based storage engine. Hot data lives in memory, cold data is sealed into columnar `.vol` files with zone maps, bloom filters, and LZ4 compression. Data survives process restarts.
131
131
132
132
```js
133
133
constdb=awaitDatabase.open('./mydata');
@@ -148,18 +148,18 @@ await db2.close();
148
148
Pass configuration as query parameters in the path:
0 commit comments