PagePoolClear()
Purges the cfml code (cfm, cfcs) from the cache of compiled bytecode (aka the Page Pool)
This function no longer recommended.
Please use InspectTemplates() instead, which only marks this cache as being dirty, thus triggering a check on use, to see if the underlying cfml file has changed, which is extremely efficent both in terms of memory usage and CPU.
PagePoolClear( );
Returns: Boolean
This function does not take any arguments.
Usage Notes
This only clears the cache for the current Application, plus all Server and Web Context mappings.
Other per Application mappings are not cleared
Examples
result = PagePoolClear();
echo(result); // page pool has been cleared
See also
- Cache
- Server
- InspectTemplates()
- PagePoolList()
- SystemCacheClear()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)