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.