Earlier quoted context omitted.
I think that you might be talking about pglite.dev when talking about wasm from my understanding, Wasm has a performance hit though from my understanding and unless one plans to run postgres on web. on the other hand a static cross platform single binary Postgres binary doesn't really have any performance hit. (anecdotally, Personally I would be interested for something like this existing and maybe even integrating i…
Yes, I'm sure the WASM binary for PG has a big perf hit. If you are just using it for testing, it probably doesn't matter? Why does the perf hit matter to you? Are you trying to run WASM binaries of PG in production? That seems like a terrible idea.
Self-contained highly-portable Python distributions
41–45 of 45 posts
Re: Self-contained highly-portable Python distributions
#42Earlier quoted context omitted.
Yes, I'm sure the WASM binary for PG has a big perf hit. If you are just using it for testing, it probably doesn't matter? Why does the perf hit matter to you? Are you trying to run WASM binaries of PG in production? That seems like a terrible idea.
No, I am not running WASM binaries of PG in production given its perf hit but I would like to have the simplicity that I have with sqlite.
SQLite is also a replacement for fopen()[0]. if you need to read/write data files, I recommend using SQLite instead. Replace your CSV's with SQLite, etc.
Re: Self-contained highly-portable Python distributions
#43There is also the APE/Cosmopolitan cross platform binaries, which includes a python. Yes, cross platform binaries. The binaries run "natively on Linux + Mac + Windows + FreeBSD + OpenBSD 7.3 + NetBSD + BIOS with the best possible performance and the tiniest footprint imaginable." * Python Source: https://github.com/jart/cosmopolitan/tree/master/third_party... * Python Binary: https://cosmo.zip/pub/cosmos/bin/python w…
so in theory, one could program a game in python and then complete and distribute one binary for everyone?
Re: Self-contained highly-portable Python distributions
#44Re: Self-contained highly-portable Python distributions
#45Earlier quoted context omitted.
No, I am not running WASM binaries of PG in production given its perf hit but I would like to have the simplicity that I have with sqlite.
My advice: Just use SQLite. Don't use PG if you don't need it. I mean PG is awesome . I use it all the time, but I also use SQLite all the time too. SQLite is also a replacement for fopen()[0]. if you need to read/write data files, I recommend using SQLite instead. Replace your CSV's with SQLite, etc. 0: https://sqlite.org/whentouse.html