ashvardanian / StringZilla

Up to 10x faster strings for C, C++, Python, Rust, and Swift, leveraging NEON, AVX2, AVX-512, and SWAR to accelerate search, sort, edit distances, alignment scores, etc 🦖
https://ashvardanian.com/posts/stringzilla/
Apache License 2.0
2.05k stars 66 forks source link

Avoid Python GIL in `write_to`, sorting, Levenshtein #105

Closed ashvardanian closed 5 months ago

ashvardanian commented 6 months ago

Saving to disk is an IO-intensive operation. Sorting and string alignments are also quite expensive. Unlocking the GIL we can allow multi-threaded Python scripts to perform such operations concurrently, not hurting each other.

ashvardanian commented 5 months ago

:tada: This issue has been resolved in version 3.6.8 :tada:

The release is available on GitHub release

Your semantic-release bot :package::rocket: