axiodb 1.5.9 → 1.6.2
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 +22 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
AxioDB is a blazing-fast, lightweight, and scalable open-source Database Management System (DBMS) tailored for modern applications. It supports `.axiodb` file-based data storage, offers intuitive APIs, and ensures secure data management. AxioDB is the ultimate solution for developers seeking efficient, flexible, and production-ready database solutions.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## ⚠️ Current Limitations
|
|
8
|
+
|
|
9
|
+
While AxioDB offers many powerful features, there are some limitations to consider:
|
|
10
|
+
|
|
11
|
+
- **No Relation Mapping:** Unlike MongoDB or other NoSQL databases, AxioDB currently doesn't support document relations or referencing between collections.
|
|
12
|
+
|
|
13
|
+
- **Not Optimized for Heavy Workloads:** The database may not perform optimally with rapid data input/output scenarios or extremely large datasets (10M+ documents).
|
|
14
|
+
|
|
15
|
+
- **Single-Thread Operations:** Operations are performed on the main thread which can impact application performance during complex queries.
|
|
16
|
+
|
|
17
|
+
- **Limited Query Complexity:** Some advanced query patterns found in mature databases are not yet implemented.
|
|
18
|
+
|
|
19
|
+
- **No Built-in Replication:** Currently lacks distributed data replication capabilities for high availability setups.
|
|
20
|
+
|
|
21
|
+
We're actively working to address these limitations in future releases.
|
|
22
|
+
|
|
5
23
|
---
|
|
6
24
|
|
|
7
25
|
## 🚀 Features
|
|
@@ -24,6 +42,10 @@ We're committed to continuously enhancing AxioDB with cutting-edge features:
|
|
|
24
42
|
- **Data Export and Import Mechanisms:** Enable seamless export and import of data in various formats like JSON, CSV, and more.
|
|
25
43
|
- **Docker Image with ODM Integration:** Build a Docker image for this npm package-based DBMS, allowing integration with other programming languages via Object Document Mapping (ODM). Once completed, simply run the Docker image and connect with the ODM.
|
|
26
44
|
- **Advanced Indexing:** Implement multi-level indexing for lightning-fast queries.
|
|
45
|
+
- **Replication and Sharding:** Introduce support for distributed data replication and sharding for high availability and scalability.
|
|
46
|
+
- **Improved Query Optimization:** Enhance query performance with advanced optimization techniques.
|
|
47
|
+
- **Relational Mapping:** Introduce support for document relations and referencing between collections.
|
|
48
|
+
- **Data Backup and Restore:** Implement robust backup and restore mechanisms for data safety.
|
|
27
49
|
- **Comprehensive Documentation:** Expand tutorials, examples, and API references for developers.
|
|
28
50
|
|
|
29
51
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axiodb",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "A blazing-fast, lightweight, and scalable nodejs package based DBMS for modern applications. Supports schemas, encryption, and advanced query capabilities.",
|
|
5
5
|
"main": "./lib/config/DB.js",
|
|
6
6
|
"types": "./lib/config/DB.d.ts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@fastify/static": "^8.0.3",
|
|
39
39
|
"fastify": "^5.1.0",
|
|
40
40
|
"joi": "^17.13.3",
|
|
41
|
-
"outers": "^8.
|
|
41
|
+
"outers": "^8.6.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/crypto-js": "^4.2.1",
|
|
@@ -48,4 +48,4 @@
|
|
|
48
48
|
"typescript": "^5.6.2",
|
|
49
49
|
"typescript-eslint": "^8.8.0"
|
|
50
50
|
}
|
|
51
|
-
}
|
|
51
|
+
}
|