web.py 共享变量
在 web.py 中,我需要创建一个共享变量,其中多个 线程(请求)可以读取或写入该变量。
对于这种情况,首选方式是什么。
谢谢。
In web.py i need to create a shared variable, for which multiple
threads(requests) can read or write to that variable.
What is the preferred way, for this kind of a situation.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这确实是一个 web.py 问题,但我们一直为进程范围的缓存(即由所有请求线程共享的字典缓存)执行此类操作。我们使用 web.py,但我下面的示例应该适用于任何多线程 Python Web 服务器。
酒店.py:
主要.py:
I'm not sure this is really a web.py question, but we do this sort of thing all the time for process-wide caches (that is, dict caches that are shared by all request threads). We use web.py, but my example below should apply to any multi-threaded Python web server.
hotels.py:
main.py:
我发现很多代码使用这个容器:web.ctx,
就像
你可以在函数中初始化这些代码,然后处理它们:
不确定它是否适用于您的场景
I find lots of code using this container: web.ctx
like
u can init those in a function, then process them:
Not sure it works or not for your scenario