Disclaimer: Not a java person A. I have a coldbox app and every time I reinitialize the application, a new instance of "net.sf.ehcache.CacheManager" is created. I've looked at the heap dump and it seems like instances of that class are taking up 85% of the available memory.
What I believe is happening is that coldbox creates a new instance of transfer when you reinitialize the application and transfer then creates a new instance of ehcache. B. I'm wondering, from Transfer's perspective..... 1. Is the intention that only one instance of Transfer exist, say in the Application scope, which ensures that only one instance of the ehCache CacheManager exists as the Application scope is generally not changed until you restart coldfusion? 2. Or, do those instances of "net.sf.ehcache.CacheManager" go away at some point (doesn't seem like it) ? 3. Or, is there a way to manually discard them when a new instance of Transfer is created? Thank you, Gabriel -- Before posting questions to the group please read: http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer You received this message because you are subscribed to the Google Groups "transfer-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/transfer-dev?hl=en
