Pinq\Caching\CacheProvider::setFileCache PHP Method

setFileCache() public static method

Uses the supplied file to store the parsed queries.
public static setFileCache ( string $fileName ) : void
$fileName string The file to cache the data
return void
    public static function setFileCache($fileName)
    {
        self::$cacheImplementation = new CSVFileCache($fileName);
        self::$hasBeenCleared = false;
    }