genosdb 0.4.9 → 0.5.1
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 +4 -1
- package/dist/gdb.min.js +1 -1
- package/dist/gdb.min.js.gz +0 -0
- package/dist/index.js +1 -1
- package/dist/index.js.gz +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,11 +50,14 @@ This project is under active development. Do not use it in production environmen
|
|
|
50
50
|
- **Completed Features**:
|
|
51
51
|
- Basic queries.
|
|
52
52
|
- Advanced queries.
|
|
53
|
+
- **Recursive Graph Traversal Queries:**
|
|
54
|
+
Execute complex, multi-hop graph traversals using the recursive $edge operator. This operator uses the source nodes as a starting point to discover and return all connected nodes that match a powerful sub-query, regardless of their relational distance. The entire traversal logic is resolved within a single, declarative query, eliminating the need for manual, multi-step lookups in the application code. The query engine is designed to handle deeply nested relational paths with exceptional speed.
|
|
53
55
|
- Modules for AI queries.
|
|
54
56
|
- Distributed storage.
|
|
55
57
|
- Conflict resolution module (LWW).
|
|
56
58
|
- Performance optimization.
|
|
57
|
-
- Intelligent Hybrid Synchronization
|
|
59
|
+
- **Intelligent Hybrid Synchronization:**
|
|
60
|
+
GenosDB overcomes the limitations of naive P2P sync with an intelligent, dual-mode engine. It automatically exchanges tiny, compressed Deltas between active peers using a sliding-window Oplog for blazing-fast, low-latency updates. For peers that are too far out of sync, it seamlessly switches to a robust Full-State Fallback, guaranteeing absolute data consistency for everyone, no matter how long they've been offline.
|
|
58
61
|
|
|
59
62
|
- **Pending Features**:
|
|
60
63
|
- No major features are currently pending. The project has entered a hardening phase with a focus on rigorous testing and stability improvements.
|