Kuzu V0 136 |link| May 2026

Noleggio films con diritti di visione pubblica

Mamma, ho riperso l'aereo: Mi sono smarrito a New York

Kuzu V0 136 |link| May 2026

| Query Type | v0.135 (ms) | | Improvement | | :--- | :--- | :--- | :--- | | 2-hop neighbor count (dense node) | 840 | 512 | 39% faster | | 5-hop shortest path (weighted) | 1,250 | 890 | 28.8% faster | | Aggregating LIST properties | N/A (via JSON) | 210 | 50x faster (vs. JSON parse) | | Concurrent read-write mix (16 threads) | 2,100 | 1,480 | 29.5% better throughput |

: Download kuzu v0.136 via pip or npm, run the migration script if coming from an older version, and rewrite your most expensive traversals using the new recursive join hints. kuzu v0 136

Kuzu uses as its query language, ensuring a low learning curve for those familiar with modern graph systems. It also boasts a columnar storage engine optimized for both transactional (OLTP) and analytical (OLAP) workloads. What’s New in Kuzu v0.136? The v0.136 update is not a minor patch; it represents a significant leap in query optimization and data handling. Here are the headline features: 1. Enhanced Recursive Join Performance Recursive graph traversals (e.g., “find all friends within 5 hops”) have historically been expensive. In kuzu v0.136 , the query planner introduces adaptive depth-first search (DFS) swapping . For highly dense graphs, the system now dynamically switches between BFS and DFS strategies at runtime, reducing memory spikes by up to 40% compared to v0.135. 2. New Data Type: LIST of STRUCT Version 0.136 introduces nested complex types. You can now store a LIST of STRUCT directly as a node property. This is a game-changer for property graph models that require hierarchical attributes (e.g., a “Customer” node holding a list of product: string, date: date ). Previously, this required serialization into JSON strings; now it is natively indexed. 3. Persistent Buffer Manager Redesign The buffer manager—responsible for moving data between disk and RAM—has been rewritten. kuzu v0.136 introduces a multi-version concurrency control (MVCC) layer that allows readers and writers to operate without locks. The result: concurrent query throughput has improved by 25-30% on multi-core machines. 4. Cypher Compatibility: UNWIND and CALL {} Two missing Cypher clauses have been added. The UNWIND clause now works seamlessly with the new LIST type, allowing you to flatten arrays into rows. The CALL {} subquery syntax (with IN TRANSACTIONS ) enables batch processing of large updates without overwhelming memory. Installing and Getting Started with Kuzu v0.136 Getting your hands on kuzu v0.136 is straightforward. The database is available via multiple package managers: Python (most common) pip install kuzu==0.136.0 Node.js npm install kuzu@0.136.0 C++ / CMake find_package(kuzu 0.136 REQUIRED) Quick start example (Python): | Query Type | v0