You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been maintaining four implementations of this library, namely Go, Rust, Python, and this one in Kotlin. Due to serious time constraints, there will only be updates for the Rust and Python implementations in the future. The Go and Kotlin implementations will be replaced with bindings to a Web Assembly (WASM) module created from the Rust implementation.
It turned out that Rust is the best language for this kind of library. It has the highest speed of execution and the lowest memory requirements. Especially the huge amount of memory required by the native JVM implementation turned out to be a problem for multiple users.
In order to create the Java bindings, I will make use of chicory, a native JVM WASM runtime.
The text was updated successfully, but these errors were encountered:
I've been maintaining four implementations of this library, namely Go, Rust, Python, and this one in Kotlin. Due to serious time constraints, there will only be updates for the Rust and Python implementations in the future. The Go and Kotlin implementations will be replaced with bindings to a Web Assembly (WASM) module created from the Rust implementation.
It turned out that Rust is the best language for this kind of library. It has the highest speed of execution and the lowest memory requirements. Especially the huge amount of memory required by the native JVM implementation turned out to be a problem for multiple users.
In order to create the Java bindings, I will make use of chicory, a native JVM WASM runtime.
The text was updated successfully, but these errors were encountered: