I wrote a WSGI compatible web application using web.py that loads a few dozen MB data into memory during startup.

It works quite well with the web.py integrated server.

However, using Apache 2 + mod_wsgi, every single request reloads the data, essentially starting the program again. Due to the loading time of several seconds, this is unbearable.

Is it inherent to mod_wsgi or can it be configured? What are my alternatives?

link|improve this question

79% accept rate
Is it inherent to mod_wsgi? No. It's inherent in HTTP. You'll need to post the smallest bit of code that shows how you think "startup" works. Also, you'll have to provide your mod_wsgi configuration, particularly, showing whether or not you're using "daemon" mode. – S.Lott Nov 25 '10 at 22:01
@S.Lott Thanks for bringing up daemon mode -- having one persistent process across requests keeps the server-side data in memory. Make it an answer, and I'll accept. – Daniel Beck Nov 25 '10 at 22:07
Yes, likely you were using embedded mode and worse still prefork MPM, this means requests could be going to lots of processes and application needing to be loaded into a new process quite a lot. See 'blog.dscpl.com.au/2009/03/…; for discussions on issues with prefork and embedded mode it you don't configure things properly. – Graham Dumpleton Nov 25 '10 at 22:17
You should actually post the smallest bit of code that shows how you think "startup" works. Also, you should provide your mod_wsgi configuration. – S.Lott Nov 25 '10 at 23:32
feedback

1 Answer

up vote 1 down vote accepted

"Is it inherent to mod_wsgi?" No. It's inherent in HTTP

Since you didn't post your mod_wsgi configuration, it's impossible to say what you did wrong.

I can only guess that you didn't use daemon mode.

See http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#Defining_Process_Groups for more information on daemon mode.

This may not be the best solution. It may be better (far, far better) to use a proper database. Without actual code examples, and more details, this is all just random guessing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.