From efbf7b6cb445156a828e34d750eb2a1ef174dd13 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Wed, 7 May 2025 09:47:38 +0300 Subject: Minor README fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6bc1a5..95863d9 100644 --- a/README.md +++ b/README.md @@ -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") -- cgit v1.3