当redis通过spring boot作为缓存技术使用时( <artifactId>spring-boot-starter-data-redis</artifactId>
),我发现在 application.properties
文件。前任:
spring.cache.cache-names=cache1,cache2
spring.cache.redis.time-to-live=600000
附录a中还有一些片段。通用应用程序属性
spring.redis.database=0 # Database index used by the connection factory.
spring.redis.url= # Connection URL. Overrides host, port, and password. User is ignored. Example: redis://user:password@example.com:6379
spring.redis.host=localhost # Redis server host.
但我不知道如何设置缓存逐出策略,如-最少使用或最近使用的等。
如何以及在何处提供此配置详细信息??
暂无答案!
目前还没有任何答案,快来回答吧!