diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2025-05-07 09:47:38 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2025-05-07 09:47:38 +0300 |
| commit | efbf7b6cb445156a828e34d750eb2a1ef174dd13 (patch) | |
| tree | c357557fc9e792afb2e888909f8743b98048b8ef | |
| parent | ad78ced520ff113d0e2b5b451eb65d13322f292e (diff) | |
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ AutereDB does not support: - Multiple tables - Type checking or schema evolution. These are outsourced to the application layer. -For production workloads, AutereDB would benefit from a porcelain layer that provides features such as query language, networking, and monitoring. AutereDB does not come with such a layer. See the [ARCHITECTURE.md](ARCHITECTURE.md) document for more details on the design and implementation. +AutereDB would benefit from a porcelain layer that provides features such as a query language, networking, and monitoring. AutereDB does not come with such a layer. See the [ARCHITECTURE.md](ARCHITECTURE.md) document for more details on the design and implementation. ## Inspiration @@ -175,7 +175,7 @@ config = DB.configure() \ .secondary_keys(["name"]) \ .initialize() -db.upsert([Value.int(10)]) +db.upsert([Value.int(10), Value.string("foo")]) # You can unwrap a database value like so: db_value = Value.string("foo") |
