缓存:redis测试

2022/1/27 2:04:22

本文主要是介绍缓存:redis测试,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>

配置:

  redis:
    host: 192.168.155.3

 

 

    @Autowired
    StringRedisTemplate stringRedisTemplate;

    @Test
    public void testStringRedisTemplate(){
        ValueOperations<String, String> ops = stringRedisTemplate.opsForValue();
        //保存
        ops.set("hello","world_"+ UUID.randomUUID().toString());

        //查询
        String s = ops.get("hello");
        System.out.println("s = " + s);
        
    }

 

 redis中查看:

 

默认是0号数据库。

原来redis操作这么简单,之前看另一个老师讲的,都搞复杂了。。

 



这篇关于缓存:redis测试的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程