I'm unclear on why the sub-interpreter API exists and why it's used in modules such as the mod_wsgi apache module. Is it mainly used for creating a security sandbox for different applications running within the same process, or is it a way to allow concurrency with multiple threads? Maybe both? Are there other purposes?
|
|
I imagine the purpose is to create separate python execution environments. mod_wsgi hosts a single python interpreter, and then hosts multiple applications within sub-interpreters. Some key points from the documentation:
|
||||||||
|
