| 94 | | mode. When run as an embedded part of the web server, as the author of |
|---|
| 95 | | `mod_wsgi` pointed out, there should be a performance gain because |
|---|
| 96 | | there is no socket involved nor any wire protocol related to |
|---|
| 97 | | marshalling of data across the socket. In this case the information is |
|---|
| 98 | | passed directly to the Python web application in the same process via |
|---|
| 99 | | the WSGI programmatic API. However by running this as an embedded |
|---|
| 100 | | component we feel that we would be violating the design principles |
|---|
| 101 | | mentioned above, and would affect security and reliability of the web |
|---|
| 102 | | server. |
|---|
| | 93 | mode. Running it as an embedded component could change this, but we |
|---|
| | 94 | feel this approach would violate the design principles mentioned above |
|---|
| | 95 | and would affect security and reliability of the web server. |
|---|