赞
踩
1,用法 /** * SET命令 * 从 Redis 2.6.12 版本开始, SET 命令的行为可以通过一系列参数来修改: * EX second :设置键的过期时间为 second 秒。 SET key value EX second 效果等同于 SETEX key second value 。 * PX millisecond :设置键的过期时间为 millisecond 毫秒。 SET key value PX millisecond 效果等同于 PSETEX key millisecond value 。 * NX :只在键不存在时,才对键进行设置操作。 SET key value NX 效果等同于 SETNX key value 。 * XX :只在键已经存在时,才对键进行设置操作。 * Predis116\Command\StringSet * https://redis.io/commands/set * @method mixed set($key, $value, $expireResolution = null, $expireTTL = null, $flag = null) * @param $key * @param $value * @param string $expireResolution * @param null $expireTTL * @param string $flag * @return mixed * @date: 2021/7/14 */ public static function set($key, $value, $expireResolution = null, $expireTTL = null, $flag = null) { return self::getRedisInstance()->set($key, $value, $expireResolution, $expireTTL, $flag); }
2,示例
- $lockKey = RedisClusterCache::OIL_PARTNER_OIL_STATION . $gasId; //key
- $lock = RedisClusterService116::set($lockKey,1, 'EX', 3, 'NX'); //使用set命令来做锁操作
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。