[Answer]-Django App is laggy when Apache2 is used vice development server

1👍

Dont set:

MaxRequestsPerChild  1

You are effectively restarting Apache on every request which means having to load the whole Django application on every request. You should not do that.

Leave a comment