Re: [PATCH 1/4] utils: Change critical section terminology to worker threads.

2020-01-29 Thread Ludovic Courtès
Hi! Christopher Baines skribis: > Ludovic Courtès writes: > >> Christopher Baines skribis: >> >>> I've gone ahead an pushed these patches now, as it's something I'd like >>> to deploy prior to the Guix days. >> >> Woohoo! Should we deploy it on berlin? Let’s synchronize on IRC maybe? > > Yep

Re: [PATCH 1/4] utils: Change critical section terminology to worker threads.

2020-01-28 Thread Christopher Baines
Ludovic Courtès writes: > Christopher Baines skribis: > >> I've gone ahead an pushed these patches now, as it's something I'd like >> to deploy prior to the Guix days. > > Woohoo! Should we deploy it on berlin? Let’s synchronize on IRC maybe? Yep, it would be good. I think it works fine on B

Re: [PATCH 1/4] utils: Change critical section terminology to worker threads.

2020-01-28 Thread Ludovic Courtès
Hi, Christopher Baines skribis: > I've gone ahead an pushed these patches now, as it's something I'd like > to deploy prior to the Guix days. Woohoo! Should we deploy it on berlin? Let’s synchronize on IRC maybe? Thanks, Ludo’.

Re: [PATCH 1/4] utils: Change critical section terminology to worker threads.

2020-01-25 Thread Christopher Baines
Ludovic Courtès writes: >> This doesn't mean all queries have to be executed one at a time though, >> providing the queries are executed outside the threads used by fibers, and a >> single connection isn't used in multiple threads. > > Serialization of database accesses comes from: > > commit

Re: [PATCH 1/4] utils: Change critical section terminology to worker threads.

2020-01-25 Thread Ludovic Courtès
Hi, Christopher Baines skribis: > As far as I'm aware, it's necessary to use a separate thread for interacting > with SQLite as one of the threads used for fibers will be blocked while the > SQLite query is running. Indeed. > This doesn't mean all queries have to be executed one at a time thou

[PATCH 1/4] utils: Change critical section terminology to worker threads.

2020-01-24 Thread Christopher Baines
As far as I'm aware, it's necessary to use a separate thread for interacting with SQLite as one of the threads used for fibers will be blocked while the SQLite query is running. This doesn't mean all queries have to be executed one at a time though, providing the queries are executed outside the t