我有一台计算机连接到多台仪器。在此计算机上,有nginx
服务器使用Falcon为uWSGI WSGI
应用程序提供服务。该应用程序被认为是如果一个用户需要访问仪器,则其他人无法使用。我通过以下(我的精简版)代码实现了这一点:
import json
import falcon
class Lab(object):
def __init__(self):
self.available_instruments = ["money_maker", "unicornifier"] # Not actual instruments
self.connected_instruments = []
def on_get(self, request, response):
response.status = falcon.HTTP_OK
response.content_type = "application/json"
response.body = json.dumps({
"connected": self.connected_instruments,
"available": self.available_instruments
})
def on_post(self, request, response):
json_body = json.loads(request.body)
instrument = json_body['connect']
if instrument in self.connected_instruments:
raise falcon.HTTPBadRequest('Busy')
elif instrument not in self.available_instruments:
raise falcon.HTTPBadRequest('No such instrument')
self.connected_instruments.append(instrument)
response.status = falcon.HTTP_OK
response.content_type = "application/json"
response.body = json.dumps({
"connected": self.connected_instruments,
"available": self.available_instruments
})
application = falcon.API()
l = Lab()
application.add_route('/', lab)
请求正文
{
"connect": "money_maker"
}
当我“连接”乐器时,直接答案显示它已连接。但是连续的GET请求没有给出预期的答案。我得到了
{
"connected": [],
"available": ["money_maker", "unicornifier"]
}
但是,如果我在本地uWSGI实例上执行上述代码,这不会发生,以进行测试。是否有任何我不知道的nginx-uWSGI交互?任何数量的帮助表示赞赏。
为了完整起见,请遵循uWSGI调用的nginx.conf
和api.ini
文件。
#nginx config file for uWSGI requests routing
server {
listen 80;
server_name example.com;
location /api {
include uwsgi_params;
uwsgi_pass unix:///tmp/api.sock;
}
}
api.ini
[uwsgi]
master = true
processes = 5
socket = /tmp/%n.sock
chmod-socket = 666
uid = apidev
gid = www-data
chdir = %d../%n
pythonpath = %d../%n
module = %n
vacuum = true
答案 0 :(得分:0)
self.connected_instruments.append(instrument)
只将已发布的数据存储在内存中!即,在一个进程的内存空间中......但是当您在nginx后面运行 5 uwsgi进程时,您很有可能将数据发布到一个进程,然后由另一个进程提供服务没有那些数据。
您必须使用数据库或所有进程可共享的内容来保存和检索数据。