Parallel(?) programming with python
Dieter Maurer
dieter at handshake.de
Thu Aug 11 12:13:07 EDT 2022
Dennis Lee Bieber wrote at 2022-8-10 14:19 -0400:
>On Wed, 10 Aug 2022 19:33:04 +0200, "Dieter Maurer" <dieter at handshake.de>
> ...
>>You could also use the `sched` module from Python's library.
>
> <sigh> Time to really read the library reference manual again...
>
> Though if I read this correctly, a long running action /will/ delay
>others -- which could mean the (FFT) process could block collecting new
>1-second readings while it is active. It also is "one-shot" on the
>scheduled actions, meaning those actions still have to reschedule
>themselves for the next time period.
Both true.
With `multiprocessing`, you can delegate long running activity
to a separate process.
More information about the Python-list
mailing list