protected function RedisCache::doSave

Puts data into the cache.

Parameters

string $id The cache id.:

string $data The cache entry/data.:

bool|int $lifeTime The lifetime. If != false, sets a specific lifetime for this: cache entry (null => infinite lifeTime).

Return value

boolean TRUE if the entry was successfully stored in the cache, FALSE otherwise.

Overrides CacheProvider::doSave

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Cache/RedisCache.php, line 80

Class

RedisCache
Redis cache provider.

Namespace

Doctrine\Common\Cache

Code

protected function doSave($id, $data, $lifeTime = 0) {
  $result = $this->redis
    ->set($id, $data);
  if ($lifeTime > 0) {
    $this->redis
      ->expire($id, $lifeTime);
  }
  return $result;
}