开发者

mod_wsgi: multiple application invokations per request?

开发者 https://www.devze.com 2023-01-20 10:19 出处:网络
I\'m using apache with mod_wsgi, and when I start apache and make a request, I see it make one invokation of the application. After a few minutes (the application gets reloaded), and now I see it make

I'm using apache with mod_wsgi, and when I start apache and make a request, I see it make one invokation of the application. After a few minutes (the application gets reloaded), and now I see it make two invokations of the application per request. Why's that?

Also: is there any easy way to initialize resources (database pools, for example) with wsgi? I have the feeling it's complicated...

Here's my conf:

NameVirtualHost *:80

WSGIPythonPath /Users/blahblah/servercode/
WSGIPythonEggs /Users/blahblah/running/eggs/

<VirtualHost *:80>


    ErrorLog /Users/blahblah/running/error.log
    LogLevel debug
    CustomLog /Users/blahblah/ru开发者_运维百科nning/access.log combined
    ServerSignature On

    DocumentRoot /Users/blahblah/wsgi

    WSGIScriptAlias /mps.py /Users/blahblah/wsgi/wsgi_connector.wsgi

    <Directory /Users/blahblah/wsgi>
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>

</VirtualHost>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号