gpt4 book ai didi

python - 从多个线程更新全局字典

转载 作者:太空宇宙 更新时间:2023-11-04 07:59:43 25 4
gpt4 key购买 nike

我有以下运行调度程序以定期更新全局变量 (dict) 状态的应用程序:

from sanic import Sanic
from sanic.response import text
from apscheduler.schedulers.background import BackgroundScheduler
import bumper

app = Sanic()
scheduler = BackgroundScheduler()

inventory = {1: 1, 2: 2}

@scheduler.scheduled_job('interval', seconds=5)
def bump():
bumper.bump()


@scheduler.scheduled_job('interval', seconds=10)
def manual_bump():
global inventory
inventory[2] += 1


@app.route("/")
async def test(request):
return text(inventory)

if __name__ == "__main__":

scheduler.start()
app.run(host="0.0.0.0", port=8000)

5秒间隔作业中导入的函数在同一目录下的不同文件中:

from app import inventory

def bump_inventory():
inventory[1] += 1
print('new', inventory)

然而,这并没有像我希望的那样起作用。导入的函数更新库存,但更改永远不会传播到原始字典,因此 bump_inventory 正在处理 inventory 的副本,或者它永远不会在函数范围之外更新它.在两个不同的终端:

]$ python app.py
2017-02-19 14:11:45,643: INFO: Goin' Fast @ http://0.0.0.0:8000
2017-02-19 14:11:45,644: INFO: Starting worker [26053]
new {1: 2, 2: 2}
new {1: 3, 2: 2}

]$ while true; do curl http://0.0.0.0:8000/; echo; sleep 1; done
{1: 1, 2: 2}
...
{1: 1, 2: 3}
...

这样做的正确方法是什么?

最佳答案

1- 无需将 apscheduler 与 asyncio 一起使用。您已将所需的所有功能内置到 asyncio 中,并且它与 Sanic 配合得很好。

2- 不建议使用全局状态,尤其是在 Web 应用程序场景中。您应该使用数据库或 Redis。但是,如果您出于某种原因需要应用程序状态,您可以将其直接存储在 app 对象上。

Sanic 的下一个版本将有一个 add_task 方法,您可以将异步任务添加到您的应用程序中。如果你现在想使用它,你可以从 Github 安装 master 分支:

import asyncio
from sanic import Sanic
from sanic.response import text

app = Sanic()
app.inventory = {1:1, 2:2}


async def five_second_job(app):
while True:
app.inventory[1] += 1
await asyncio.sleep(5)


async def ten_second_job(app):
while True:
app.inventory[2] += 2
await asyncio.sleep(10)


@app.route("/")
async def test(request):
return text(app.inventory)

if __name__ == "__main__":
app.add_task(five_second_job(app))
app.add_task(ten_second_job(app))
app.run(host="0.0.0.0", port=9000)

关于python - 从多个线程更新全局字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42327701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com