如何在aiohttp或flask请求中写入全局变量(或单例)

时间:2019-09-17 15:26:08

标签: python flask pytest aiohttp pytest-aiohttp

我正在尝试从flask请求写入全局对象。 我知道不建议在这种情况下使用全局变量,但我正在更改状态以执行一些测试。我不想使用任何缓存内存解决方案,例如pickledb。

我尝试了多种方法,但没有一个成功。我也试图了解为什么单例解决方案不起作用,例如

class Singleton:
    foo = 'bar'
    ...

@app.RestApi.service.route('/test/endpoint1')
def endpoint1():
    singleton_instance = Singleton.get_instance()
    singleton_instance.foo='not bar'
    print("Endpoint1 was called.")

在某个时候,我称端点1为:     s = Singleton.get_instance()     s.foo ='bar'

#CALL ENDPOINT1 HERE USING URLLIB ....

time.sleep(10) #enough time to sync !!

现在,如果我得到s.foo,它将不会是“ not bar”。相反,它不会改变!

知道为什么吗?

谢谢

1 个答案:

答案 0 :(得分:0)

更新:我在代码中的某个地方使用进程而不是线程而没有注意到。正在对上下文进行分叉,以便flask在与获取该输出的python实例不同的进程中运行。