Makhaev Anatoliy
Makhaev Anatoliy
Oh, I took a closer look, probably this is a tinygo problem, because their SliceHeader implementation differs from the standard one But if you have an idea how to make...
Which version of golang you are using? `unsafe.Slice` is a new feature, if your go is old, we need something like this: https://stackoverflow.com/a/59210739/12903113 UPD: I see: https://github.com/kelindar/binary/blob/3a4b1f08e35cb98743e5ce84572f3a92aca97e1c/go.mod#L3C1-L3C8
@cherrymui thank you > The flag does not apply to other platforms, so it would have wasm in the name to be clear good point > are better to be...
The time for one compilation is about 3 minutes: ``` $ tinygo clean $ time make 2>&1 | ts -m May 14 13:40:25 tinygo build -x -tags wasm -o main.wasm...
> I do wonder why you need to recompile the whole binary with every request? Users write code on our platform, we execute this code on the backend. In the...