CacheBox on Beta 3.5 registering 2 railo provider caches as the same cache.

I can see what i am doing wrong here.

I have this snippet in my cachebox.cfc

                               cacheBox.caches = {
        //need to set up an eh cache lite called templte to use this
          template = {
            provider = "coldbox.system.cache.providers.RailoColdBoxProvider"
          },
          object = {
            provider = "coldbox.system.cache.providers.RailoColdBoxProvider"
          }
        };

In the monitor i have 3 caches registered. default,template and object
However template and object have exactly the same items in them with
the same values.
Also on cachebox monitor the template cache under "Cache
Configuration" shows as having cachename=object

When i do this
objectCache = controller.getColdboxOCM("object");
//templateCache = controller.getColdboxOCM("template");
objectCache.clearAll();

in onAppInit the template cache also clears too.

So it looks like i have 2 registered caches but they are using the
same underlying cache.

I have specified them as "eh cache lite" caches in Railo. Is Railo
only providing 1 underlying cache with "eh cache lite"? If so why does
the monitoring tool have it as cachename=object

Railo 3.3
Coldbox 3.5 Beta

Thanks

If you read the RailoColdBoxProvider docs: http://wiki.coldbox.org/wiki/CacheBox.cfm#Railo_Providers
You can pass another property into the provider called “cachename” so you can tell the provider what underlying railo cache to talk to

Luis F. Majano
CEO
Ortus Solutions, Corp
www.ortussolutions.com

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com

Social: twitter.com/lmajano facebook.com/lmajano

Beautiful, thanks Luis

cacheBox.caches = {
          template = {
            provider =
"coldbox.system.cache.providers.RailoColdBoxProvider",
            properties = {cacheName = "template"}
          },
          object = {
            provider =
"coldbox.system.cache.providers.RailoColdBoxProvider",//uses the
default object cache by default
            properties = {cacheName = "object"}
          }
        };