Hello All,
I would like to know if anyone has implemented MultiNode cache in Mifos implementation. I can see the below in API documentation. Cache The following settings are possible for cache: No Caching: caching turned off Single node: caching on for single instance deployments of platorm (works for multiple tenants but only one tomcat) By default caching is set to No Caching. Switching between caches results in the cache been clear e.g. from Single node to No cache and back again would clear down the single node cache. I can see that CacheType.java has 3 Enum values. INVALID(0, "cacheType.invalid"), // NO_CACHE(1, "cacheType.noCache"), // SINGLE_NODE(2, "cacheType.singleNode"), // MULTI_NODE(3, "cacheType.multiNode"); If we need to enable cache in multi instance deployment, how do I setup cache.? Thanks, Karthik
