Prado\Caching\TXCache::flush PHP Method

flush() public method

Be careful of performing this operation if the cache is shared by multiple applications.
public flush ( )
    public function flush()
    {
        for ($i = 0, $max = xcache_count(XC_TYPE_VAR); $i < $max; $i++) {
            if (xcache_clear_cache(XC_TYPE_VAR, $i) === false) {
                return false;
            }
        }
        return true;
    }