From 1703dcb60dc9defd5f5385d0413fb91f62f0085f Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Thu, 6 Jul 2023 15:12:29 +0200 Subject: [PATCH] Improved documentation --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ed29f4..de3e34b 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ In-memory key value store that saves your data to plain old JSON files. If you like, you can operate on your entire data with classic UNIX tools. -Suitable for small to medium data volume. - ## Installation ```shell @@ -38,3 +36,9 @@ users := ocean.New[User]("google") ``` You can add as many directory hierarchies as you need but I recommend using a simple `/namespace/collection/` structure. + +## Limitations + +This storage mechanism is suitable for small to medium data volume. + +It is not suited for big data, however the package is pretty lightweight so you can combine it with a big data store.