From 47a55680a797063ef136190513e5b16a3e1df5b4 Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Tue, 8 Nov 2022 07:14:29 +0100 Subject: [PATCH] Create README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..81e61fa --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +Immutable NoSQL database that works on a single plain text file. + +## Features + +- 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 fast since it has no queue or locking limitations. +- Minimalistic to implement and use. + +## Advantages of using an immutable database