缓存不足
在启动一些较大的项目,比如jenkins时,会发现访问缓慢,并且报错:
the cache because there was insufficient free space available after evicting expired cache entries - consider increasing the maximum size of the cache
这是由于tomcat分配的缓存不够导致。
解决办法:
修改tomcat目录下conf/context.xml文件,在content中添加如下内容:
<Resources cachingAllowed="true" cacheMaxSize="100000" />
之后正常重启tomcat即可生效。