Relative Content

Tag Archive for pythondjangoapache

Broken Process Pool: Processpool executor inside django app hosted on apache

I have a django application that I would like to host on my apache server. Use case of the application is to receive requests and performs compute intensive operations over a set of given inputs. To parallelise my computations I used future.ProcessPool executor in the core of the django app. Parallelisation in indispensable for my application.