phiresky
phiresky
Also note the Voluntary context switches: 1125721 and the higher memory usage.
Sure, here you go: https://gist.github.com/phiresky/e3d3dff24ff495552971dda945521b84 ```js git clone https://gist.github.com/phiresky/e3d3dff24ff495552971dda945521b84 cd e3d3dff24ff495552971dda945521b84 npm install node go.js ```
This issue should be fixed in a cleaner way as described in https://github.com/phiresky/sqlite-zstd/issues/43
Why would an async generator function not handle backpressure? The JS runtime pauses and resumes the generator depending on how often new results are fetched from the consumer, so if...
just to mention, afaik deleting a column doesn't actually free any space for existing databases, and the methods to do so require full exclusive lock (vacuum full) https://dba.stackexchange.com/questions/117510/reclaim-disk-space-from-dropped-column-without-downtime . doesn't...
I'm getting [some test failures](https://woodpecker.join-lemmy.org/repos/129/pipeline/13292/23) in the private_community tests, e.g. here: not_found thrown in: ./api_tests/src/private_community.spec.ts:162:3: https://github.com/LemmyNet/lemmy/blob/7bb471d106128c7bd598fff7453cb93aad59c4eb/api_tests/src/private_community.spec.ts#L162-L165 I'm not sure why these are happening because those parts of the code should...
regarding why it's taking so long - I think that's mainly because I've only been working on it very sparodically. I'm sorry about that El lun, 5 may 2025, 12:49,...
There's three pending changes for this PR: * using batch delete + upsert for the update of the community available tag list instead of loops * making the tests use...
Yes, probably, like slurp > I feel this may be an example of an input that should be processed with sed or something before feeding into jq. But how would...
It would be useful if there was a distinction between fd --json invocations that do stat calls vs ones that don't. Because for large directories, the stat calls are what...