deepbase-json 3.8.4 → 3.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -583,13 +583,17 @@ MIT License - Copyright (c) Martin Clasen
|
|
|
583
583
|
|
|
584
584
|
## 📊 Performance
|
|
585
585
|
|
|
586
|
-
DeepBase v3.
|
|
586
|
+
DeepBase v3.8.4 local benchmark medians (three runs on 2026-08-06,
|
|
587
|
+
1,000 sequential writes and reads per run):
|
|
587
588
|
|
|
588
|
-
-
|
|
589
|
-
-
|
|
590
|
-
-
|
|
589
|
+
- 📁 **JSON**: ~597,000 cached reads/sec and ~1,500 persisted writes/sec
|
|
590
|
+
- 🗃️ **SQLite** (`balanced`): ~236,000 reads/sec and ~49,100 writes/sec
|
|
591
|
+
- 🏗️ **Drizzle + SQLite** (`balanced`): ~23,700 reads/sec and ~10,800 writes/sec
|
|
591
592
|
|
|
592
|
-
|
|
593
|
+
MongoDB and Redis were not available in this measurement environment, so their
|
|
594
|
+
older results are not presented as current. See the
|
|
595
|
+
[Benchmark Results](https://github.com/clasen/DeepBase/blob/main/BENCHMARK_RESULTS.md)
|
|
596
|
+
for the full methodology, detailed operations, environment, and reproduction
|
|
597
|
+
commands. Results vary by hardware, dataset, durability settings, and workload.
|
|
593
598
|
|
|
594
599
|
For more information, visit [GitHub](https://github.com/clasen/DeepBase)
|
|
595
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepbase-json",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.6",
|
|
4
4
|
"description": "⚡ DeepBase JSON - filesystem driver",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.cjs",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"steno": "^0.4.4"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"deepbase": "^3.8.
|
|
21
|
+
"deepbase": "^3.8.6"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"mocha": "^10.8.2"
|