When a database starts in 7 ms, it becomes a function call.
In-memory cold start: 7 ms. Durable local mode: 411 ms. At those numbers, the database stops being something you connect to and starts being something you invoke — born, used, and killed inside one agent execution.
A graph is born when the agent starts, dies when the agent finishes. Snapshot in between if you want to keep it.
Six things speed unlocks
Cold start isn't a vanity benchmark. It's the constraint that decides whether the database can be a real-time component of reasoning or an external service the agent has to wait on.
A different mental model
Traditional databases are services: long-lived, shared, slow to start, expensive to isolate. You connect to them. You manage their lifecycle separately from the workloads that use them.
CognoDB is closer to a library that happens to speak Bolt. The lifecycle of the graph matches the lifecycle of the task. When the task is over, the bytes are gone — unless you chose to snapshot them.
That changes how you architect agent systems. Instead of one giant context store with elaborate tenancy, you get one graph per agent run, cleaned up automatically.