Skip to content
This repository was archived by the owner on Jan 4, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions ThinkPHP/Library/Think/Think.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ public static function start()
if (!APP_DEBUG && Storage::has($runtimefile)) {
Storage::load($runtimefile);
} else {
if (Storage::has($runtimefile)) {
//在高并发状态下,这里容易引起死锁,建议去掉这里的删除和重建,毕竟后面已经有一个删除和重建操作了
/*if (Storage::has($runtimefile)) {
Storage::unlink($runtimefile);
}
}*/

$content = '';
// 读取应用模式
Expand Down