Gets data from the cache backend.
string $cid: The cache ID to return.
mixed The cached data, if any. This will immediately return FALSE if the $skipCache property is TRUE.
protected function cacheGet($cid) {
if ($this->skipCache) {
return FALSE;
}
return $this->cacheBackend
->get($this
->prepareCid($cid));
}