+41
packages/sanddb/sanddb.0.2/opam
+41
packages/sanddb/sanddb.0.2/opam
···
···+- Easy to use: SandDB's API is extremely small, so you only need to know few functions to use it.+- Type safe: Every common dangerous operation (like parsing) is covered by the Result type, so you will know where to expect errors.+- Immutable: Database is based on the immutable stack idea, where you can only push onto the stack.+- Crud capable: Even though the database is immutable you still can update and delete records, by shadowing them.+- Version keeping: Every update and delete operation will produce a new version of the affected record, without modifying the original, so you will have all versions of your data.+- Supports multiple serializers: SandDB supports both json and biniou serialization format thanks to the atdgen library.