SIMD-Powered Performance Library
Leveraging AVX2 and NEON instructions to deliver 4-8x faster database operations with automatic CPU feature detection.
Measured speedup over pure Go scalar implementations.
Integer Comparisons (AVX2)
~4x faster
JSON HasSpecialChars
5-8x faster
UTF-8 Validation (ASCII)
10-20x faster
Aggregations (SUM/COUNT)
4-6x faster
String Operations
2-4x faster
Benchmarked against pure Go scalar implementations. Results vary by data size and CPU architecture.
WHERE age > 30 → CmpGtInt64 + bitmap operationsSELECT SUM(amount), COUNT(*) → SumInt64, CountNonNullJOIN ON id → XXHash64 for hash table buildingWHERE name LIKE 'John%' → CmpLikeString with compiled patternsUPPER(city) → StrToUpper with SIMD accelerationThe engine behind SyndrDB's blazing performance.