aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
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")