SpringBoot - Redis缓存 - 注解@Cacheable、@CacheEvict、@CachePut 使用示例详解
项目开发中使用缓存是常用提高查询性能的有效手段,这里主要讲解一下Redis与Spring中几个缓存注解的整合使用。Redis配置spring:#Redis配置redis:host:127.0.0.1#Redis服务器连接密码(默认为空)password:xxxx#Redis数据库索引(默认为0)database:5port:6379#连接超时时间(毫秒)timeout:5000ms#这里使用的是l