Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
How do I configure the default maximum cache size for ProducerCache or ProducerTemplateAvailable as of Camel 2.3 This applies to ConsumerCache and ConsumerTemplate as well. You can configure the default maximum cache size by setting the getCamelContext().getProperties().put(Exchange.MAXIMUM_CACHE_POOL_SIZE, "50"); And in Spring XML its done as: <camelContext> <properties> <property key="CamelMaximumCachePoolSize" value="50"/> </properties> ... </camelContext> The default maximum cache size is 1000. At runtime you can see the See Also |