/**
  * Store an item.
  *
  * @param string $cacheId
  * @param mixed  $content
  *
  * @return bool
  */
 public function setItem($cacheId, $content)
 {
     $cacheId = $this->normalizeKey($cacheId);
     return $this->cache->set($cacheId, $content);
 }