标签:back ttl top scan 模式匹配 检查 current add 序列化
描述:扫描键的键空间
返回:Array,boolean:如果没有更多的键,此函数将返回一个键的数组或FALSE
参考网址:http://stackoverflow.com/questions/19910527/how-to-use-hscan-command-in-redis
$it = NULL; /* Initialize our iterator to NULL */ $redis->setOption(Redis::OPT_SCAN, Redis::SCAN_RETRY); /* retry when we get no keys back */ while($arr_keys = $redis->scan($it)) { foreach($arr_keys as $str_key) { echo "Here is a key: $str_key\n"; } echo "No more keys to scan!\n"; }
描述:PSETEX使用以毫秒为单位的TTL
$ redis-> pSetEx(‘key‘,100,‘value‘); //设置键→值,0.1秒TTL。
描述:如果键在数据库中不存在,则将参数中的字符串值设置为键的值。
$redis->setNx(‘key‘, ‘value‘); /* return TRUE */ $redis->setNx(‘key‘, ‘value‘); /* return FALSE */
描述:将存储在键上的数字增加1。 如果第二个参数被填充,它将被用作增量的整数值。
$redis->incr(‘key1‘); / * key1不存在,在增加前设置为0 * / / *,现在的值为1 * / $redis->incr(‘key1‘); /* 2 */ $redis->incr(‘key1‘); /* 3 */ $redis->incr(‘key1‘); /* 4 */ $redis->incrBy(‘key1‘, 10); /* 14 */
描述:使用浮点精度递增键
$redis->incrByFloat(‘key1‘, 1.5); /* key1 didn‘t exist, so it will now be 1.5 */ $redis->incrByFloat(‘key1‘, 1.5); /* 3 */ $redis->incrByFloat(‘key1‘, -1.5); /* 1.5 */ $redis->incrByFloat(‘key1‘, 2.5); /* 4 */
描述:获取所有指定键的值。 如果一个或多个键不存在,数组将在键的位置包含FALSE。
$redis->set(‘key1‘, ‘value1‘); $redis->set(‘key2‘, ‘value2‘); $redis->set(‘key3‘, ‘value3‘); $redis->mGet(array(‘key1‘, ‘key2‘, ‘key3‘)); /* array(‘value1‘, ‘value2‘, ‘value3‘); $redis->mGet(array(‘key0‘, ‘key1‘, ‘key5‘)); /* array(`FALSE`, ‘value1‘, `FALSE`);
描述:设置一个值并返回该键上的上一个条目。
$redis->set(‘x‘, ‘42‘); $exValue = $redis->getSet(‘x‘, ‘lol‘); // return ‘42‘, replaces x by ‘lol‘ $newValue = $redis->get(‘x‘)‘ // return ‘lol‘
描述:将键移动到其他数据库。
$redis->select(0); // switch to DB 0 $redis->set(‘x‘, ‘42‘); // write 42 to x $redis->move(‘x‘, 1); // move to DB 1 $redis->select(1); // switch to DB 1 $redis->get(‘x‘); // will return 42
描述:
$redis->set(‘x‘, ‘42‘); $redis->rename(‘x‘, ‘y‘); $redis->get(‘y‘); // → 42 $redis->get(‘x‘); // → `FALSE
描述:与重命名相同,但如果目标已存在,则不会替换密钥。 这与setNx的行为相同。
$redis->set(‘x‘, ‘42‘); $redis->setTimeout(‘x‘, 3); // x will disappear in 3 seconds. sleep(5); // wait 5 seconds $redis->get(‘x‘); // will return `FALSE`, as ‘x‘ has expired.
这个适合设置从Unix时间戳。 钥匙的死亡日期,从纪元时间起的秒数。
描述:在项目上设置到期日期(时间戳)。 pexpireAt需要一个以毫秒为单位的时间戳。
$redis->set(‘x‘, ‘42‘); $now = time(NULL); // current timestamp $redis->expireAt(‘x‘, $now + 3); // x will disappear in 3 seconds. sleep(5); // wait 5 seconds $redis->get(‘x‘); // will return `FALSE`, as ‘x‘ has expired.
Description: Set the string value in argument as value of the key, with a time to live. PSETEX uses a TTL in milliseconds.
Key TTL Value
Bool TRUE
if the command is successful.
标签:back ttl top scan 模式匹配 检查 current add 序列化
原文地址:http://www.cnblogs.com/tinywan/p/6072142.html