Microweber\Providers\CacheManager::save PHP Method

save() public method

It can store any value that can be serialized, such as strings, array, etc.
public save ( mixed $data_to_cache, string $cache_id, string $cache_group = 'global', $expiration = false ) : boolean
$data_to_cache mixed your data, anything that can be serialized
$cache_id string id of the cache, you must define it because you will use it later to retrieve the cached content.
$cache_group string (default is 'global') - this is the subfolder in the cache dir.
return boolean
    public function save($data_to_cache, $cache_id, $cache_group = 'global', $expiration = false)
    {
        return $this->adapter->save($data_to_cache, $cache_id, $cache_group, $expiration);
    }