TigerBeetle's Docs Site Rebuild: Ditching Docusaurus for a Zig-Powered Solution

2025-04-10
TigerBeetle's Docs Site Rebuild: Ditching Docusaurus for a Zig-Powered Solution

TigerBeetle rebuilt its documentation site from scratch, abandoning Docusaurus (Node.js based) in favor of a lightweight, fast, Zig-powered static site generator. Leveraging Zig's build system and Pandoc, they achieved efficient Markdown parsing and HTML generation. The new site boasts improved user experience, a significantly smaller footprint, and even a fun Easter egg game. This rebuild showcases TigerBeetle's commitment to technical excellence and a lean approach.

Read more
Development Documentation Site

Enum of Arrays: A Novel Data Structure for Efficient Data Processing

2024-12-21
Enum of Arrays: A Novel Data Structure for Efficient Data Processing

This article introduces a data structure called "Enum of Arrays" (EoA), similar to the popular "Struct of Arrays" (SoA), but with enums at its core. EoA packs multiple enum values into an array, using a single tag to identify the array's type. This reduces memory usage and branch prediction overhead, leading to more efficient data processing, particularly beneficial for SIMD optimization. The article uses the database system TigerBeetle as an example, illustrating how EoA enables efficient batch processing by effectively separating the control plane and data plane, resulting in significantly improved performance.

Read more