Kuzu V0 136 !!hot!! Full Direct

import kuzu db = kuzu.Database("./test_kuzu_db") conn = kuzu.Connection(db) Create schema and nodes conn.execute("CREATE NODE TABLE Person(name STRING, age INT64, PRIMARY KEY(name))") conn.execute("CREATE REL TABLE Knows(FROM Person TO Person, since INT64)") Insert data conn.execute("CREATE (:Person name: 'Alice', age: 30)") conn.execute("CREATE (:Person name: 'Bob', age: 25)") conn.execute("MATCH (a:Person name: 'Alice'), (b:Person name: 'Bob') CREATE (a)-[:Knows since: 2020]->(b)") Full recursive query (feature unique to v0.136) result = conn.execute("MATCH (a:Person name: 'Alice')-[*1..3]->(b:Person) RETURN b.name") while result.has_next(): print(result.get_next())

The "full" package’s improved query planner makes recursive analytical queries actually usable in production. If you are evaluating kuzu v0 136 full against a potential "Lite" version, understand the trade-offs: kuzu v0 136 full

| Operation | Kuzu v0.128 (beta) | Kuzu v0.136 Full | Improvement | | :--- | :--- | :--- | :--- | | 2-Hop Neighbor Query | 1.4 seconds | 0.9 seconds | | | Bulk Insert (1M edges) | 45 seconds | 32 seconds | 29% faster | | Cold Start Load Time | 12 seconds | 8 seconds | 33% faster | | Recursive Path (5 hops) | Timeout (30s+) | 2.3 seconds | Stable | import kuzu db = kuzu

If you have been struggling with earlier Kuzu betas or are new to graph databases, downloading is the definitive starting point. Ensure your environment meets the requirements, leverage the recursive query features, and enjoy the speed of a truly optimized embedded graph database. Have you tested Kuzu V0.136 Full in your own projects? Share your benchmarks and use cases in the community forums. For official documentation, visit kuzudb.com/docs/v0.136. Have you tested Kuzu V0