redis在Java中的使用

1.安装Redis(下载redis压缩包,解压到本地即可);

2.pom.xml导入jar包依赖;

    
            org.crazycake
            shiro-redis
            2.4.2.1-RELEASE

   

3.application.properties添加redis配置(springboot项目);

#redis
# Redis服务器地址
spring.redis.host=localhost
# Redis服务器连接端口
spring.redis.port=6379
# 连接池中的最大空闲连接
spring.redis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.pool.min-idle=0
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.pool.max-wait=-1
# 连接超时时间(毫秒)
spring.redis.timeout=0
#Redis数据库索引(默认为0)
spring.redis.database=0
#Redis服务器连接密码(默认为空)

spring.redis.password=

4.Java中使用;

    a.向redis中存值;

    String phone = 15761671122;//可以从前台传参

    Integer mobile_code = (int) ((Math.random() * 9 + 1) * 100000);

    Jedis jedis = new Jedis("127.0.0.1");

    jedis.set(phone, mobile_code.toString()); //存值

    jedis.expire(phone, 300); //设置过期时间(单位:s)

    b.从redis中取值;

    String phone = 15761671122;//可以从前台传参

    Jedis jedis = new Jedis("127.0.0.1");
    String sessionCode = jedis.get(phone);

    System.err.println("sessionCode>>>>>" + sessionCode);

简单的使用到此就结束了。


你可能感兴趣的:(Java整理)