[web2py] Re: New python web framework: Brubeck

2011-07-17 Thread Massimo Di Pierro
Is this different than the anyserver.py that ships with web2py and supports gevent? Did you try? If, necessary, can you send me a patch? On Jul 17, 3:22 pm, Vasile Ermicioi wrote: > > Mongrel2: lean & fast, asynchronous web serving > > Eventlet: non-blocking I/O & coroutines > > ZeroMQ: fast mess

[web2py] Re: New python web framework: Brubeck

2011-07-17 Thread Massimo Di Pierro
:-) On Jul 17, 4:59 pm, Vasile Ermicioi wrote: > from gevent import pywsgi  ("""A WSGI server based on :class:`StreamServer` > that supports HTTPS.""") > instead of > from gevent import wsgi > > gevent.wsgi doesn't support streaming and ssl > > and I use an option spawn=Pool(96), > it allows to l

[web2py] Re: New python web framework: Brubeck

2011-07-17 Thread pbreit
Is there a benefit to using this sort of stuff instead of nginx + uwsgi.

[web2py] Re: New python web framework: Brubeck

2011-07-26 Thread pbreit
Here's another: http://adeel.github.com/pump/ "Pump: A dead simple Pythonic abstraction of HTTP." I'm not exactly sure what the implications are but it seems like a good direction.

Re: [web2py] Re: New python web framework: Brubeck

2011-07-17 Thread Vasile Ermicioi
from gevent import pywsgi ("""A WSGI server based on :class:`StreamServer` that supports HTTPS.""") instead of from gevent import wsgi gevent.wsgi doesn't support streaming and ssl and I use an option spawn=Pool(96), it allows to limit the number of connections parser.add_option('-w',

Re: [web2py] Re: New python web framework: Brubeck

2011-07-17 Thread Vasile Ermicioi
uwsgi doesn't work on windows, gevent does and you can take advantage of greenthreads (greenlets, tasklets, microthreads) I use gevent for a crawler that runs on a windows machine and as a server for web2py to expose those data but on Linux I think uwsgi is the best option with whatever server yo