作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正忙着写一个小型游戏服务器来尝试 flask 。游戏通过 REST 向用户公开一个 API。用户执行操作和查询数据很容易,但是我想在 app.run()
循环之外为 "game world"
服务以更新游戏实体,等等。鉴于 Flask 实现得如此干净,我想看看是否有 Flask 方法可以做到这一点。
最佳答案
您的附加线程必须从 WSGI 服务器调用的同一个应用程序启动。
下面的示例创建了一个后台线程,该线程每 5 秒执行一次并操作也可用于 Flask 路由函数的数据结构。
import threading
import atexit
from flask import Flask
POOL_TIME = 5 #Seconds
# variables that are accessible from anywhere
commonDataStruct = {}
# lock to control access to variable
dataLock = threading.Lock()
# thread handler
yourThread = threading.Thread()
def create_app():
app = Flask(__name__)
def interrupt():
global yourThread
yourThread.cancel()
def doStuff():
global commonDataStruct
global yourThread
with dataLock:
pass
# Do your stuff with commonDataStruct Here
# Set the next thread to happen
yourThread = threading.Timer(POOL_TIME, doStuff, ())
yourThread.start()
def doStuffStart():
# Do initialisation stuff here
global yourThread
# Create your thread
yourThread = threading.Timer(POOL_TIME, doStuff, ())
yourThread.start()
# Initiate
doStuffStart()
# When you kill Flask (SIGTERM), clear the trigger for the next thread
atexit.register(interrupt)
return app
app = create_app()
从 Gunicorn 调用它,如下所示:
gunicorn -b 0.0.0.0:5000 --log-config log.conf --pid=app.pid myfile:app
关于python - 如何将后台线程添加到 flask ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14384739/
我是一名优秀的程序员,十分优秀!