aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2026-04-11 00:21:02 +0200
committerStefan Majewsky <majewsky@gmx.net>2026-04-11 00:21:02 +0200
commit30984e9e686cc1dc2bede6784a2534371b02219d (patch)
tree2dc7f52977e14b7ab5870215071ac74d7557e51b /README.md
parent2607d3f7d6f2a831e15aeb25f0e258b5887ed531 (diff)
downloadgo-oblast-30984e9e686cc1dc2bede6784a2534371b02219d.tar.gz
say no to ctx
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 28d357c..4494b49 100644
--- a/README.md
+++ b/README.md
@@ -6,3 +6,10 @@ SPDX-License-Identifier: Apache-2.0
# Oblast
My attempt at an ORM library for Go. Inspired by [Gorp](https://pkg.go.dev/gopkg.in/gorp.v3), but without the bits that make Gorp slow.
+
+## Unstructured notes
+
+TODO: write out a proper readme
+
+- goals: as fast as possible, as little allocs on hot paths as possible
+- consequences: no `context.Context` (benchmarking shows up to 50% more allocations and 100% more memory allocated in OLTP usecase, i.e. QueryRow vs. QueryRowContext)