Merlin Moncure
Merlin Moncure
Great -- thanks for response. The challenge with callbacks is that there is no way (that I know of) to handle callbacks at the SQL level. The idea here is...
Well, it's useful in any single threaded application. If you look at asynchronous stacks like node, you can see that most i/o works this way. This type of work is...
reading up on the libcurl api, the library supports async requests without threading (which would be required for this approach to be technically feasible). Here's in example I found: [https://curl.haxx.se/libcurl/c/multi-app.html](url)...
yeah, PARALLEL != async. PARALLEL means you can spawn multiple similar option, in query, in situations where query planner thinks it's a good idea to do so. async means you...
Hello, I'm interested in picking up some of this work, or perhaps something along these lines, as part of an internship project through my company. Is this something you'd be...
On Sun, Mar 9, 2025 at 10:01 AM Philipp Steinrötter < ***@***.***> wrote: > Hello, I'm interested in picking up some of this work, or perhaps > something along these...
In order to get something like this compiled I cribbed a bit from [pg_bench](https://doxygen.postgresql.org/pgbench_8c.html). pg_bench has a very similar use case: pull off statements from a user provided file, process...