Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

26.7. caches

		
neo@MacBook-Pro-M2 ~ % curl -s http://www.netkiller.cn:8080/actuator/caches | jq
{
  "cacheManagers": {
    "cacheManager": {
      "caches": {
        "censor": {
          "target": "org.springframework.data.redis.cache.DefaultRedisCacheWriter"
        },
        "translate": {
          "target": "org.springframework.data.redis.cache.DefaultRedisCacheWriter"
        }
      }
    }
  }
}		
		
		
		
neo@MacBook-Pro-M2 ~ % curl -s http://www.netkiller.cn:8080/actuator/caches/censor |jq
{
  "target": "org.springframework.data.redis.cache.DefaultRedisCacheWriter",
  "name": "censor",
  "cacheManager": "cacheManager"
}