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.
Files changed (2) hide show
  1. package/README.md +10 -6
  2. 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.0 delivers exceptional performance:
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
- - **Redis**: 6,000-7,700 ops/sec for most operations
589
- - 📁 **JSON**: 600,000+ ops/sec for cached reads
590
- - 🍃 **MongoDB**: 1,600-2,900 ops/sec balanced performance
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
- See [Benchmark Results](./BENCHMARK_RESULTS.md) for detailed performance analysis.
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.4",
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.4"
21
+ "deepbase": "^3.8.6"
22
22
  },
23
23
  "devDependencies": {
24
24
  "mocha": "^10.8.2"