joshbenaron

Results 14 comments of joshbenaron

Hey, it would be great if you could somehow compile sqlrite down to a wasm file. I work on a distributed compute blockchain which only runs wasm, and frankly C...

> I like the idea of having fewer allocations. Definitely decreasing possible failure points. > > Btw, I created a discord server for the project so we can start have...

Hey, what's the update on this? I'd like to push to get this done as it would help out on a project to have WASM bindings for sqlite. I'd be...

Hey, Has there been anymore progress/confirmation on the above issues? Have any low risk issues been fixed? Also, is this crate still maintained?

@kjvalencik so if we have a struct `User`, you propose converting that to a string (using `serde`) and then doing `JSON.parse` on the JS side? Noting this is my use...

@kjvalencik Ah I see. So just to clarify, is `ArrayBuffer` synonymous with `neon::prelude::JsArrayBuffer`?

@kjvalencik Thanks for all your help! What about going from JS -> Rust. Should I split up `ArrayBuffer` and `DataItem` JSON and pass that to Rust? i.e. are the performance...

@kjvalencik in fact 10GB can be small. Essentially I have some JSON which has some data which can be any size. could be a petabyte. I create a signature based...

> @joshbenaron This is a limit of the V8 engine. The default heap size is 1.5GB. You cannot allocated more than this on the heap. `node --max-old-space-size=8192 app.js`?

Hey is there any progress on this?