We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
例如我请求A接口的同时请求了B
条件1 A带session的修改 B不带修改 条件2 B处理的速度比A时间长
那么 这个SESSION就会不变
我看代码推断大概的原因是 这个处理是先在 HTTP_GLOBAL_ON_REQUEST先去缓存取出数据 然后HTTP_GLOBAL_AFTER_REQUEST在写入缓存 所以就会出现 如果一个进程比带更新数据的进程慢了 就会把旧数据又重新覆盖到新数据上 导致数据不变
The text was updated successfully, but these errors were encountered:
No branches or pull requests
例如我请求A接口的同时请求了B
条件1
A带session的修改
B不带修改
条件2
B处理的速度比A时间长
那么 这个SESSION就会不变
我看代码推断大概的原因是 这个处理是先在 HTTP_GLOBAL_ON_REQUEST先去缓存取出数据 然后HTTP_GLOBAL_AFTER_REQUEST在写入缓存 所以就会出现 如果一个进程比带更新数据的进程慢了 就会把旧数据又重新覆盖到新数据上 导致数据不变
The text was updated successfully, but these errors were encountered: