Tilman Roeder

Results 75 comments of Tilman Roeder

1. Sounds interesting! 2. I was previously thinking of having a networked pager, which shares transactions with a cluster of other deployments peer-to-peer (imagine running multiple servers and having the...

Hm. I would be curious to test how much each feature effects the WASM binary size vs how much they are used to better understand the tradeoffs involved. It might...

A thought on loading sqlite extensions: with `Deno.dlopen` it is possible to run code from a shared object. I’m not sure how much memory sharing SQLite extensions require; but if...

I've had some thoughts around using denos dll loader / a wash loader set-up to support loading custom extensions, but I don't have any specific progress on that yet.

Hm that’s interesting! The database should be fully self-contained (ie it holds all of the SQLite state inside separate WASM contexts for each database, so closing the database and clearing...

Interesting. 100 runs is not that many, have you tried running the benchmark a few more times to avoid background tasks interfering with the results? I’ll have a look as...

I just tried this locally, and I’m getting the same results on Mac. I’m not sure why performance is so much worse on Mac vs Linux (it might be interesting...

Could this be a relative performance gain vs Mac? https://deno.com/blog/deno-in-2021#an-optimized-core (I haven’t investigated this properly, just saw this in the blog and thought it might be related)

Yeah, I think the issue is most likely in the file system API in Deno, since the performance issue seems to only occur on Mac, but not on Linux. Interestingly,...

This is possibly related to #179