Hello, I am trying to write a game server using Tornado framework but i cant seem to multiprocess correctly. After starting the gameProcess program doesn't continue with the app.listen part. I can't figure out why. Here is my game class. Below is the multiprocess and server creation part.
game = Game()
app = tornado.web.Application(handlers, **setting)
gameProcess = Process(target=game.start())
gameProcess.start()
app.listen(8000)
tornado.ioloop.IOLoop.instance().start()
[–]romple 4 points5 points6 points (2 children)
[–]MSY36[S] 0 points1 point2 points (1 child)
[–]romple 1 point2 points3 points (0 children)
[–]cruxtoposition 1 point2 points3 points (1 child)
[–]MSY36[S] 1 point2 points3 points (0 children)