fiableDB/README.md

35 lines
1.1 KiB
Markdown
Raw Normal View History

2022-11-08 07:18:14 +01:00
Immutable NoSQL database that works on a single plain text file
2022-11-08 07:14:29 +01:00
## Features
2022-11-08 22:14:27 +01:00
- **Information is never lost**. Even if you make updates or deletions, you will be able to recover any information at any time.
- There are **no restrictions on the data structure or columns**, since dictionaries are used without limitations on nesting. Similar to MongoDB Documents.
- All the information is **stored in a JSON file**.
- Extremely fastb since it has no queue or locking limitations.
- **Minimalistic** to implement and use.
2022-11-08 07:14:29 +01:00
## Advantages of using an immutable database
2022-11-08 07:18:14 +01:00
2022-11-08 22:14:27 +01:00
- **High level of consistency and accuracy of data**, such as a hospital patient's chronology or banking data. It cannot be modified once it has been aggregated.
- They **simplify the process of backing up and restoring data**, because you can always **revert to the original version** of the data if necessary.
- **Very secure**, modifying existing data will be detected and rejected.
2022-11-08 07:18:14 +01:00
## Install
2022-11-08 22:14:27 +01:00
```python
pip3 install --user advance-touch
```
2022-11-08 07:18:14 +01:00
## Use
### Agregation
### Update
### Delete
### Find all
### Find one
2022-11-08 22:14:27 +01:00