I have an existing cherrypy application but I want to know is if it's at all possible to run it on the gevent wsgi server. I imagine I can but I don't have access to a linux server to test out gevent and haven't been able to get it to run on my mac.

I'm under the impression this is possible since each side follows wsgi spec.

Has anyone tried this?

I guess an example would look like the following:

import cherrypy 
from gevent import wsgi

class Root(object):
     def index(self):
        return "hi!"
     index.exposed = True

app = cherrypy.tree.mount(Root(), '/')
wsgi.WSGIServer(('', 8088), app).serve_forever()
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

That example works fine. I'm sure #gevent on freenode would help you with any installation issues.

link|improve this answer
Yes I confirmed that since the cherry tree and application objects do contain a callable that all should work as expected...I'll check out freenode too for a remote test platform. Cheers! – deecodameeko Feb 28 '11 at 22:17
feedback

Your Answer

 
or
required, but never shown

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