./categories/server
Tomcat 리소스 캐시 공간 부족
증상
The background cache eviction process was unable to free [10] percent of the cache
for Context [] - consider increasing the maximum size of the cache.
조치 (context.xml / Context)
<Resources
cachingAllowed="true"
cacheMaxSize="102400"
cacheObjectMaxSize="512"
/>
| 속성 | 의미 |
|---|---|
cacheMaxSize | 캐시 총 한도 (KB, 기본 10240) |
cacheObjectMaxSize | 단일 객체 상한 (KB). cacheMaxSize/20 초과 불가 |
rm -rf $CATALINA_HOME/work/*
$CATALINA_HOME/bin/shutdown.sh && $CATALINA_HOME/bin/startup.sh
./comments