Kuzu V0 136 __hot__ May 2026

Once installed, a simple database can be initialized with a few lines of code:

Kuzu v0.3.6 reinforces the project's position as the leading embeddable graph database. By focusing on performance, ease of integration, and memory efficiency, it provides a robust foundation for the next generation of graph-powered applications, particularly in the realms of AI and data engineering. kuzu v0 136

Memory efficiency is critical for an embeddable database. This version introduces more granular control over the buffer manager, allowing developers to set strict memory limits that prevent application crashes during heavy ingestion or complex path-finding operations. Why Kuzu v0.3.6 Matters for GraphRAG Once installed, a simple database can be initialized

import kuzu db = kuzu.Database('./my_graph_db') conn = kuzu.Connection(db) # Create a schema conn.execute("CREATE NODE TABLE User(name STRING, age INT64, PRIMARY KEY (name))") conn.execute("CREATE REL TABLE Follows(FROM User TO User)") # Ingest data conn.execute("CREATE (:User {name: 'Alice', age: 30})") conn.execute("CREATE (:User {name: 'Bob', age: 25})") conn.execute("MATCH (a:User), (b:User) WHERE a.name = 'Alice' AND b.name = 'Bob' CREATE (a)-[:Follows]->(b)") Use code with caution. Conclusion This version introduces more granular control over the