Kuzu V0 136 New! Jun 2026
The vectorized engine combined with factorized execution prevents intermediate result explosions, maintaining a flat memory profile and high execution speeds where other databases stall. Practical Implementation Guide
Kùzu v0.13.6 continues to cement the project's reputation as the go-to embedded graph database for modern developers. By combining the ease of use of an embedded database with a strict schema, high-speed C++ execution, and robust Cypher support, Kùzu handles graph workloads efficiently without the operational complexity of client-server systems.
Since its initial release, Kuzu has accumulated over 2,500 GitHub stars. Version 0.136 has already been downloaded over 15,000 times in its first two weeks.
: Expands language support with a new native API for Swift developers. Why Choose Kuzu? kuzu v0 136
Kùzu started as a research project at the University of Waterloo, and is now being developed primarily by Kùzu Inc., a spinoff company from the university, under a permissive MIT license.
Unlike traditional databases that run as separate server processes requiring network calls, Kùzu is embedded directly into your application process. There are no servers to manage, no ports to configure, and zero network overhead. Your data lives where your code runs. 2. The Property Graph Model
Whether you are building the next-generation fraud detection system or a personal knowledge graph, Kuzu v0.136 provides the tooling you need—without the complexity. Since its initial release, Kuzu has accumulated over
No more manual installation for algo , fts , json , and vector extensions.
Unlike some loose graph systems, Kùzu enforces a schema. This ensures data integrity and allows the query optimizer to make highly efficient execution plans.
Because Kùzu is embedded and highly performant, it excels in domains where deploying a massive server-based graph database like Neo4j is overkill or structurally impossible. 1. Graph Retrieval-Augmented Generation (GraphRAG) Why Choose Kuzu
The v0.1.36 update brings several key improvements designed to streamline the developer experience and optimize complex graph queries:
Kùzu is an designed specifically for high-speed analytical queries. Unlike traditional graph databases that require a dedicated server, Kùzu runs directly within your application process, similar to SQLite or DuckDB. Core Features include:
response = conn.execute( "MATCH (a:User name: 'Alice')-[:Follows]->(b)-[:Follows]->(fof) RETURN fof.name, fof.age" ) while response.has_next(): row = response.get_next() print(f"Alice's Friend-of-Friend: row[0], Age: row[1]") Use code with caution. Alice's Friend-of-Friend: Charlie, Age: 35 Use code with caution. Performance Tip: Scanning Directly from DataFrames