缓存:redis测试

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

配置:

  redis:
    host: 192.168.155.3

缓存:redis测试

缓存:redis测试

 

 

    @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测试

 

 redis中查看:

缓存:redis测试

 

默认是0号数据库。

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

 

上一篇:WINDOWS系统:如何远程桌面连接阿里云服务器?


下一篇:远程开启远程计算机的远程桌面