aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2025-05-07 09:47:38 +0300
committerJan Tuomi <jan@jantuomi.fi>2025-05-07 09:47:38 +0300
commitefbf7b6cb445156a828e34d750eb2a1ef174dd13 (patch)
treec357557fc9e792afb2e888909f8743b98048b8ef /README.md
parentad78ced520ff113d0e2b5b451eb65d13322f292e (diff)
Minor README fixesHEADmain
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files 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")