jcaesar
jcaesar
Ivan quit working for wasmerio 4 months ago. ;)
Well, don't ask me… but I assume it's way down the list. If someone implemented it and made a PR (well, or finished my code), I assume it would get...
I somehow doubt wasmer-java is still anywhere on wasmerio's priority list… Might be best if someone with vested interest (I no longer have) forked this and put it onto Maven...
> https://github.com/Salpadding/wasmer-jni Neat, that even [supports](https://github.com/Salpadding/wasmer-jni/blob/main/rust/src/lib.rs#L278=) instance imports.
Hm. It's about 30% slower on instantiating modules in a tight loop because the global store is gone. Also, after about 16300 instantiations (suspicious number, I know..) it fails with...
I think that's coincidence. I never measured the exact number though, it might be 0x4000, e.g.
(Cleaning up my open PRs. 3.0 will be out soon, too.)
@cep21 Updating from v0.24.0 to dea41e0d608d6db5961b2fb4672b1fedd0d3b64e did resolve this for me.
You have a byte array in there which doesn't have a direct equivalent in JSON and ends up being converted to a list of integers. Have a look at the...
Hm, this has the unfortunate side effect of removing length hints, which may make CBOR and similar formats longer in some cases (e.g. `{"x":0}`: [before](https://cbor.me/?bytes=A1(61(78)-00)) [after](https://cbor.me/?bytes=BF(61(78)-00-FF))). All output formats having...