当前位置: 首页>>代码示例>>PHP>>正文


PHP Redis::set方法代码示例

本文整理汇总了PHP中Redis::set方法的典型用法代码示例。如果您正苦于以下问题:PHP Redis::set方法的具体用法?PHP Redis::set怎么用?PHP Redis::set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Redis的用法示例。


在下文中一共展示了Redis::set方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: set

 public function set($sKey, $oData, $iTTL = -1)
 {
     $iTTL = $this->buildTTL($iTTL);
     if ($iTTL === 0) {
         return $this->oClient->set($this->buildKey($sKey), $this->serialize($oData));
     }
     return $this->oClient->setex($this->buildKey($sKey), $iTTL, $this->serialize($oData));
 }
开发者ID:asticode,项目名称:php-cache-manager,代码行数:8,代码来源:RedisHandler.php

示例2: set

 /**
  * Store data on the cache server.
  *
  * @param string       $key        Key we can use to retrieve the data.
  * @param string|array $data       Data to store on the cache server.
  * @param int          $expiration Time before the data expires on the cache server.
  *
  * @return bool Success/Failure.
  * @access public
  */
 public function set($key, $data, $expiration)
 {
     if ($this->connected === true && $this->ping() === true) {
         return $this->server->set($key, $this->isRedis ? $this->IgBinarySupport ? igbinary_serialize($data) : serialize($data) : $data, $expiration);
     }
     return false;
 }
开发者ID:sebst3r,项目名称:nZEDb,代码行数:17,代码来源:Cache.php

示例3: set

 /**
  * {@inheritdoc}
  */
 public function set($key, $data, $ttl = 0)
 {
     if ($ttl > 0) {
         return $this->redis->setex($key, (int) $ttl, $data);
     }
     return $this->redis->set($key, $data);
 }
开发者ID:lingualeo,项目名称:php-cache,代码行数:10,代码来源:RedisCache.php

示例4: write

 /**
  * {@inheritDoc}
  */
 public function write($sessionId, $data)
 {
     if (0 < $this->ttl) {
         $this->redis->setex($this->getRedisKey($sessionId), $this->ttl, $data);
     } else {
         $this->redis->set($this->getRedisKey($sessionId), $data);
     }
 }
开发者ID:ronnylt,项目名称:SncRedisBundle,代码行数:11,代码来源:RedisSessionHandler.php

示例5: set

 public function set($key, $value, $ttl = 0)
 {
     if ($ttl > 0) {
         return self::$cache->setex($this->getNamespace() . $key, $ttl, json_encode($value));
     } else {
         return self::$cache->set($this->getNamespace() . $key, json_encode($value));
     }
 }
开发者ID:adolfo2103,项目名称:hcloudfilem,代码行数:8,代码来源:redis.php

示例6: save

 /**
  * Save item in the cache.
  * 
  * @param string $key
  * @param string $value
  * @param int $ttl
  * @return void
  * 
  * @throws StorageException if storage error occurs, handler can not be used
  */
 protected function save($key, $value, $ttl)
 {
     try {
         $this->redis->set($key, $value, $ttl);
     } catch (\Exception $e) {
         throw new StorageException("Failed to save redis key: {$key}", 1, $e);
     }
 }
开发者ID:Nek-,项目名称:php-circuit-breaker,代码行数:18,代码来源:RedisAdapter.php

示例7: set

 /**
  * Set a value in the cache
  * @param string $p_sKey The Key
  * @param mixed $p_mData The Data
  * @param mixed $p_mTTL The Time To Live. Integer or String (strtotime)
  * @return boolean True on succes, False on failure.
  */
 function set($p_sKey, $p_mData, $p_mTTL = null)
 {
     if ($p_mTTL !== null && is_string($p_mData)) {
         $p_mTTL = strtotime($p_mTTL);
     }
     $p_mTTL = $p_mTTL !== null ? $p_mTTL : $this->_defaults['expiry'];
     return $this->_handler->set($p_sKey, $p_mData, $p_mTTL);
 }
开发者ID:revolveweb,项目名称:ppi-framework,代码行数:15,代码来源:Redis.php

示例8: put

 /**
  * @inheritdoc
  */
 public function put($key, $value, $ttl = 0)
 {
     if ($ttl > 0) {
         return $this->redis->setex($key, $ttl, $value);
     } else {
         return $this->redis->set($key, $value);
     }
 }
开发者ID:lixiongyou,项目名称:pudding,代码行数:11,代码来源:Redis.php

示例9: set

 public function set($key, $value, $ttl = null)
 {
     if (!is_null($ttl)) {
         return $this->connection->set($key, $value, $ttl);
     } else {
         return $this->connection->set($key, $value);
     }
 }
开发者ID:oat-sa,项目名称:generis,代码行数:8,代码来源:class.PhpRedisDriver.php

示例10: set

 public function set($id, $data, $lifetime = false)
 {
     if ($lifetime) {
         return $this->_redis->setex($id, $lifetime, $data);
     } else {
         return $this->_redis->set($id, $data);
     }
 }
开发者ID:sttt,项目名称:phpredis-kohana3.3,代码行数:8,代码来源:Redis.php

示例11: doSave

 /**
  * {@inheritdoc}
  */
 protected function doSave($id, $data, $lifeTime = 0)
 {
     if (0 === $lifeTime) {
         return $this->_redis->set($id, $data);
     } else {
         return $this->_redis->setex($id, $lifeTime, $data);
     }
 }
开发者ID:luisbrito,项目名称:Phraseanet,代码行数:11,代码来源:RedisCache.php

示例12: store

 /**
  * @inheritdoc
  */
 public function store($key, $value, $ttl = null)
 {
     $key = $this->prefix . $key;
     if ($ttl) {
         $this->redis->set($key, serialize($value), $ttl);
         return;
     }
     $this->redis->set($key, serialize($value));
 }
开发者ID:icanboogie,项目名称:storage,代码行数:12,代码来源:RedisStorage.php

示例13: setJson

 /**
  * 设置值(string)会将$value自动转为json格式
  * @param string $key KEY名称
  * @param string|array $value 获取得到的数据
  * @param int $timeOut 时间
  * @return bool
  */
 public function setJson($key, $value, $timeOut = 0)
 {
     $value = json_encode($value);
     $retRes = $this->redis->set($key, $value);
     if ($timeOut > 0) {
         $this->redis->setTimeout($key, $timeOut);
     }
     return $retRes;
 }
开发者ID:WALES7CH,项目名称:TP-Admin,代码行数:16,代码来源:RedisHandler.class.php

示例14: doSave

 /**
  * {@inheritdoc}
  */
 protected function doSave($id, $data, $lifeTime = false)
 {
     if (0 < $lifeTime) {
         $result = $this->redis->setex($id, (int) $lifeTime, serialize($data));
     } else {
         $result = $this->redis->set($id, serialize($data));
     }
     return (bool) $result;
 }
开发者ID:slaparra,项目名称:voting-details,代码行数:12,代码来源:RedisCache.php

示例15: testStdClass

 public function testStdClass()
 {
     $data = new \stdClass();
     $data->a = 'a';
     $data->b = 'b';
     $key = new CacheKey('test', rand(1, 1000));
     $this->cache->set($key, $data);
     $val = $this->cache->get($key);
     $this->assertEquals($data, $val);
 }
开发者ID:PhanQuocTrung,项目名称:WeatherStation,代码行数:10,代码来源:RedisTest.php


注:本文中的Redis::set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。