The multiple-processes tag has no wiki summary.
5
votes
3answers
892 views
IPC (inter process communication) between python and java
First, a little explanation of why I'm asking this question in the first place:
I'm writing a python program (with a wxPython gui) that needs to call a Java AWT program from python and extract data ...
1
vote
2answers
27 views
timing control for parallel processes
how can i control two processes to run alternately in separate terminal windows.
for example i run the code for each on separate terminal windows at 11:59 and both of them wait for the time to be ...
1
vote
2answers
313 views
Reader and writer process SQLite
I have two processes:
Writes to two tables every second (ish)
Reads from said tables periodically
I know that with SQLite, any writes lock the whole database and so sometimes the second process ...
0
votes
0answers
75 views
Is it possible for multiple processes to share proxy authentication details set via InternetSetOption?
The following code is being used to specify a proxy to use for the Windows OS. The proxy requires authentication, which is successfully being applied. Whilst this code sets the proxy for the whole ...
0
votes
0answers
16 views
Any benefits of multiple (web app) processes on a single core machine?
These are the only ones I can think of:
One crashes, the other can step in to handle the requests while another process starts up.
Zero downtime deploy: You kill one process, the other keeps taking ...
0
votes
3answers
166 views
How can multiple calculations be launched in parallel, while stopping them all when the first one returns? [Python]
How can multiple calculations be launched in parallel, while stopping them all when the first one returns?
The application I have in mind is the following: there are multiple ways of calculating a ...