Deep dive into the high-performance core.
Blitz Engine is the foundation of VoidAI — a Rust library that compiles to both native and WASM with identical performance characteristics.
| Metric | Value |
|---|---|
| Ring buffer push | 15ns |
| Message throughput | 87M/sec |
| Byte operations | 1.2B/sec |
| Dependencies | 0 in core |
Reactive event processing with backpressure:
let mut loop = EventLoop::new(); loop.on("message", |msg| { // Handle message }); loop.run(); ```
Lock-free, bounded queue:
let rb = RingBuffer::new(1024); rb.push(data); // 15ns let item = rb.pop(); ```
Same API in JavaScript:
const loop = new EventLoop(); const rb = new RingBuffer(1024); ```
Open source coming soon. Star us when we launch!