-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
缓存文件读取异常 #6
Comments
现在也收到了其他人的同样的错误反馈,但是他使用的是redis驱动,还在跟踪中 |
我使用倒是文件驱动, |
这个问题是出现在并发的时候,缓存文件读写频繁没有加锁,导致读取数据异常,感谢隔壁某大神帮忙解决问题 |
做一个 小项目使用文件缓存验证token和续期频繁读写遇到了这个问题,解决如下,在driver 的file里面get方法的 |
页面调起约 6~7 个ajax请求,
PDOConnection
中有用到文件缓存。应该是文件缓存写入文件时file_put_contents($filename, $data);
没加所导致的。The text was updated successfully, but these errors were encountered: