There are some big problems with using the multiprocessing library and flask together. Each multiprocessing.Process thread that we spawn creates another copy of the web servers.
The likely workaround is to put the analysis running code in a completely different server running on the same machine.
There are some big problems with using the multiprocessing library and flask together. Each multiprocessing.Process thread that we spawn creates another copy of the web servers.
The likely workaround is to put the analysis running code in a completely different server running on the same machine.