91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

RedisUtil 工具類

發布時間:2020-07-23 17:14:22 來源:網絡 閱讀:262 作者:IT達仁 欄目:軟件技術

package com.amway.msgcenter.msgtask.util;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataAccessException;
import org.springframework.data.redis.connection.RedisConnection;
import org.springframework.data.redis.core.RedisCallback;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Component;

import redis.clients.jedis.JedisCommands;

@Component
public class RedisUtil {

@Autowired
// 操作字符串的template,StringRedisTemplate是RedisTemplate的一個子集
private StringRedisTemplate stringRedisTemplate;
@Autowired
// RedisTemplate,可以進行所有的操作
private RedisTemplate<Object, Object> redisTemplate;

public void set(String key, String value) {
    stringRedisTemplate.opsForValue().set(key, value);
}

public void set(String key, String value, long time) {
    stringRedisTemplate.opsForValue().set(key, value, time);
}

public String get(String key) {
    return stringRedisTemplate.opsForValue().get(key);
}

public void delete(String key) {
    stringRedisTemplate.delete(key);
}

public Long getLock(String lockKey, String value, int time) {
    return redisTemplate.execute(new RedisCallback<Long>() {
        @Override
        public Long doInRedis(RedisConnection connection) throws DataAccessException {
            JedisCommands commands = (JedisCommands) connection.getNativeConnection();
            Long result = commands.setnx(lockKey, value);
            commands.expire(lockKey, time);
            return result;
        }
    });

}

public String getLock2(String lockKey, String value, int time) {
    return redisTemplate.execute(new RedisCallback<String>() {
        @Override
        public String doInRedis(RedisConnection connection) throws DataAccessException {
            JedisCommands commands = (JedisCommands) connection.getNativeConnection();
            return commands.set(lockKey, value, "NX", "PX", time * 1000L);

        }
    });

}

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安岳县| 历史| 鄯善县| 翼城县| 喀喇| 孟津县| 慈溪市| 吉林市| 二手房| 南阳市| 香格里拉县| 新竹县| 磐石市| 砀山县| 彭州市| 昭苏县| 北辰区| 泗洪县| 宁津县| 宜章县| 田林县| 贵南县| 察雅县| 西昌市| 丹江口市| 顺平县| 锡林浩特市| 峡江县| 威远县| 安图县| 察隅县| 鹤峰县| 临沧市| 丹凤县| 江阴市| 广河县| 苏尼特右旗| 城固县| 万安县| 犍为县| 祥云县|