一些技术规范:
uWSGI:
[uwsgi]
socket = 127.0.0.1:3031
master = true
processes = 5
uid = xx
gid = xx
env = DJANGO_SETTINGS_MODULE=xx.settings
module = django.core.handlers.wsgi:WSGIHandler()
post-buffering = 8192
harakiri = 30
harakiri-verbose = true
disable-logging = true
logto = /var/log/xx.log
vacuum = true
optimize = 2
JSON序列化程序:
class LazyEncoder(simplejson.JSONEncoder, json.Serializer):
def default(self, obj):
if isinstance(obj, Promise):
return force_unicode(obj)
if isinstance(obj, Decimal):
u_value = force_unicode(obj)
if u'.' in u_value:
return float(u_value)
return int(u_value)
return super(lazy_encoder, self).default(obj)
JSON HttpResponse:
class JsonResponse(HttpResponse):
status_code = 200
json_status_code = 200
message = _('OK')
def __init__(self, json={}, *args, **kwargs):
mimetype = kwargs.pop('mimetype', 'application/json')
if not 'status' in json:
json['status'] = {'code': self.json_status_code, 'message': self.message}
super(JsonResponse, self).__init__(LazyEncoder(indent=settings.DEBUG and 4 or None, separators=settings.DEBUG and (', ', ': ') or (',', ':')).encode(json), mimetype=mimetype, *args, **kwargs)
我有一些JsonResponse的子类和其他json_status_code和消息。
查看:
....
if application.status == Application.STATUS_REMOVED:
return JsonApplicationSuspendedResponse()
....
return JsonResponse()
的问题: 的
即使应用程序状态正在发生变化,我也会收到旧的json,请说3到4秒,然后正确返回JsonApplicationSuspendedResponse()。
我检查了数据库应用程序状态更新立即发生, 还注意到,如果我重启uWSGI并发送请求响应是正确的,则会发生相反的情况。状态改变后的第二个请求可能有旧的json。
看起来好像他们为少数sencods编写了响应,并且刷新时遇到了问题(Cache被禁用)。
可能出现问题的任何想法?
相同的代码在Apache2和mod_wsgi上运行正常
固定
这是一个非常愚蠢的错误,在JsonResponse我有:
def __init__(self, json={}, *args, **kwargs):
part json = {} 在这里非常重要,JsonResponse和init之后的JsonResponse的每个子类共享初始dict及其内容,所以答案看起来像是没有改变。
def __init__(self, json=None, *args, **kwargs):
mimetype = kwargs.pop('mimetype', 'application/json')
if not json:
json = {}
if not 'status' in json:
json['status'] = {'code': self.json_status_code, 'message': self.message}
感谢您的时间
答案 0 :(得分:0)
您是否尝试过禁用python优化器(从uWSGI配置文件中删除优化选项)?
即使看起来更像是js / html / client问题,某些对象也会在启用优化时出现问题。请不要遵循愚蠢的建议,例如降级到不支持超过1年的版本。