Neos\Cache\Backend\SimpleFileBackend::isCacheFileExpired PHP 메소드

isCacheFileExpired() 보호된 메소드

Checks if the given cache entry files are still valid or if their lifetime has exceeded.
protected isCacheFileExpired ( string $cacheEntryPathAndFilename ) : boolean
$cacheEntryPathAndFilename string
리턴 boolean
    protected function isCacheFileExpired($cacheEntryPathAndFilename)
    {
        return file_exists($cacheEntryPathAndFilename) === false;
    }