jetcache
jetcache copied to clipboard
能不能通过配置文件自由切换使用local和remote,不要在@Cached配置
比如增加以下配置 jetcache: local: enable: false remote: enable: false 增加完之后,@Cached 和通过api的调用,都不使用缓存 jetcache: local: enable: true remote: enable: false 增加完之后,@Cached 和通过api的调用,使用local缓存,不使用remote缓存 jetcache: local: enable: false remote: enable: true 增加完之后,@Cached 和通过api的调用,不使用local缓存,使用remote缓存 jetcache: local: enable: true remote: enable: true 增加完之后,@Cached 和通过api的调用,使用local缓存,使用remote缓存
有个enableMethodCache的总开关,别的没有了
希望尽早增加此功能