> WSGIDaemonProcess hello user=www-data group=www-data threads=5

with web2py try the following instead:
WSGIDaemonProcess hello user=www-data group=www-data processes=<number
of cores + 1> threads=(0 or 1)

If it's faster, then the GIL must be the cause.  flask by default has
much less features active (session for instance)



2014-03-18 21:04 GMT+01:00 horridohobbyist <horrido.hobb...@gmail.com>:
> I took the shipping code that I ran in Flask (without Apache) and adapted it
> to run under Apache as a Flask app. That way, I'm comparing apples to
> apples. I'm comparing the performance of the shipping code between Flask and
> web2py.
>
> Below, I've included the 'default' file from Apache2/sites-available for
> Flask.
>
> Basically, the code in Flask executes 10x faster than the same code in
> web2py. So my question is:  if Apache is at fault for the web2py app's slow
> performance, why doesn't Apache hurt the Flask app's performance? (This
> doesn't seem to be related to GIL or WSGI.)
>
>
> <VirtualHost *:80>
>   ServerName 10.211.55.7
>   WSGIDaemonProcess hello user=www-data group=www-data threads=5
>   WSGIScriptAlias / /home/richard/welcome/hello.wsgi
>
>   <Directory /home/richard/welcome>
>     Order Allow,Deny
>     Allow from all
>   </Directory>
> </VirtualHost>
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to