This article mainly introduces Thinkphp's method of disabling caching. During development projects, it is often difficult to use caching. Therefore, there is always a way to disable caching, for more information, see modify the cache frequently during development. Therefore, you must delete the cache frequently to see the effect.
Therefore, cache can be removed for ease of development.
1. Find \ ThinkPHP \ Common \ convention. php and \ ThinkPHP \ Common \ debug. php.
2. Open these two files and find the settings you want.
Debugging. php
The Code is as follows:
'Tmpl _ CACHE_ON '=> false, // The template cache is enabled by default.
In convention. php'
The Code is as follows:
TMPL_CACHE_ON '=> false, // If template compilation cache is enabled by default, the template is re-compiled every time.
'Action _ CACHE_ON '=> false, // ACTION cache is disabled by default.
'Html _ CACHE_ON '=> false, // The static cache is disabled by default.
How does thinkphp disable all caches? (The answer that baidu knows is satisfactory)
The Code is as follows:
APP_DEBUG => true
DB_FIELD_CACHE => false
HTML_CACHE_ON => false