frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

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

https://github.com/stoolap/stoolap
1•thunderbong•6mo ago

Comments

physicsguy•6mo 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.