spring redis 主要类介绍


一、主要类介绍

    RedisTemplate:redis 项目操作类。

    主要方法:

        opsForValue() :基本的键值存储,类似于map , 操作有:set(),get()

        opsForList():    操作类似于队列   主要方法: leftPush(),leftPop();


/***
 * @author liushuaic
 * @date 2015/11/25 12:06
 * 存储字符串
 * **/
public void putStringKeyStringVal(String key,String val){
    redisTemplate.opsForValue().set(key, val);
    //return redisTemplate.opsForList().leftPush(key, val);
}
/**
 * @author liushuaic
 * @date 2015/11/25 14:08
 * 获取字符串
 * **/
public String getStringByStringKey(String key){
    returnredisTemplate.opsForValue().get(key);
    //return redisTemplate.opsForList().rightPopAndLeftPush(key, key);
}


你可能感兴趣的:(redis,spring,主要类介绍)