Stoolap: High-performance, SQL database in pure Go with zero dependencies

1 thunderbong 1 5/22/2025, 6:26:06 AM github.com ↗

Comments (1)

physicsguy · 7h ago
> Vectorized Execution: SIMD-accelerated operations for high throughput

> // This file contains highly optimized versions of vector operations > // that benefit from compiler auto-vectorization on modern CPUs.

https://github.com/stoolap/stoolap/blob/9c0ceda3bb9c674a9758...

Unfortunately, the standard Go compiler explicitly doesn't auto-vectorize, so saying that this is a pure Go SIMD database isn't strictly correct. You'll only get this if you compile with gccgo.