mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Added support for Tornado.
Took less than a beer.
This commit is contained in:
parent
0c935d06c7
commit
d14389cb68
11
examples/tornado/basic.py
Normal file
11
examples/tornado/basic.py
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
import tornado.web
|
||||
|
||||
class MainHandler(tornado.web.RequestHandler):
|
||||
def get(self):
|
||||
self.write("Hello, world")
|
||||
|
||||
app = tornado.web.Application([
|
||||
(r"/", MainHandler)
|
||||
])
|
||||
|
||||
29
gunicorn/workers/gtornado.py
Normal file
29
gunicorn/workers/gtornado.py
Normal file
@ -0,0 +1,29 @@
|
||||
# -*- coding: utf-8 -
|
||||
#
|
||||
# This file is part of gunicorn released under the MIT license.
|
||||
# See the NOTICE for more information.
|
||||
|
||||
from tornado.httpserver import HTTPServer
|
||||
from tornado.ioloop import IOLoop, PeriodicCallback
|
||||
|
||||
from gunicorn.workers.base import Worker
|
||||
|
||||
class TornadoWorker(Worker):
|
||||
|
||||
def watchdog(self):
|
||||
self.notify()
|
||||
|
||||
if self.ppid != os.getppid():
|
||||
self.log.info("Parent changed, shutting down: %s" % self)
|
||||
self.ioloop.stop()
|
||||
|
||||
def run(self):
|
||||
self.socket.setblocking(0)
|
||||
self.ioloop = IOLoop.instance()
|
||||
PeriodicCallback(self.watchdog, 1000, io_loop=self.ioloop).start()
|
||||
|
||||
server = HTTPServer(self.app, io_loop=self.ioloop)
|
||||
server._socket = self.socket
|
||||
server.start(num_processes=1)
|
||||
|
||||
self.ioloop.start()
|
||||
Loading…
x
Reference in New Issue
Block a user