fukamachi / woo

A fast non-blocking HTTP server on top of libev
http://ultra.wikia.com/wiki/Woo_(kaiju)
MIT License
1.28k stars 98 forks source link

Tornado is using only one IOLoop #26

Closed Dith3r closed 9 years ago

Dith3r commented 9 years ago

Please consider using:

    server.bind(__port__, __host__, 0, __backlog__)
    server.start(0) # this will start one process per core 
    tornado.ioloop.IOLoop.current().start()
fukamachi commented 9 years ago

All servers in the benchmark that Tornado is in are using only single CPU core. It may be possible to add Tornado to multicore benchmark with the setting you said.

fukamachi commented 9 years ago

I don't have a plan to add it for now. Closing.