public static function getKeyPath()

in app/classes/Cache/Cache.php [158:161]


    public static function getKeyPath(string $id, bool $immutable = false): string
    {
        return self::getCachePath() . sha1($id) . ($immutable ? '.immutable' : '.cache');
    }