Custom Hash with caching

Set cache:

        $e107cache = e107::getCache();
        $e107cache->setMD5('your hash');
        $e107cache->set('your tag', $cache_data);

Get cache:

e107::getCache()->setMD5('your hash'))->retrieve('your tag');