Re: Replicate cache across multiple CF servers

2014-07-18 Thread Cameron Childress
On Thu, Jul 17, 2014 at 5:10 PM, Uday Patel wrote: I have an application running on single server and i was caching some commonly used data in Application scope. There is a logic tied in my caching object such that when data changes the cache is rebuild. Now we are moving to clustered

Re: Replicate cache across multiple CF servers

2014-07-18 Thread Russ Michaels
what I also used to do in the early days, was to periodically dump the application scope out to a wddx file on a network share.~ and load this file in from all servers. I also did the same with users sessions as well, which was an easy way to do session replication On Fri, Jul 18, 2014 at 2:37

Re: Replicate cache across multiple CF servers

2014-07-18 Thread Scott Stewart
this sounds like a job for client variables. Set up a blank table in your DB, create a datasource for it in the CF Admin. While in the CF Admin, activate client variables and point it at the datasource... DO NOT let it use the registry to store client vars under any circumstance. The things that

Re: Replicate cache across multiple CF servers

2014-07-18 Thread Russ Michaels
god no don't use client variables. On Fri, Jul 18, 2014 at 3:24 PM, Scott Stewart webmas...@sstwebworks.com wrote: this sounds like a job for client variables. Set up a blank table in your DB, create a datasource for it in the CF Admin. While in the CF Admin, activate client variables

Replicate cache across multiple CF servers

2014-07-17 Thread Uday Patel
Hi All, Need help with replicating cache across clustered CF8 servers. I have an application running on single server and i was caching some commonly used data in Application scope. There is a logic tied in my caching object such that when data changes the cache is rebuild. Now we are moving

Re: Replicate cache across multiple CF servers

2014-07-17 Thread Russ Michaels
take a look at this http://ehcache.org/documentation/integrations/coldfusion On Thu, Jul 17, 2014 at 10:10 PM, Uday Patel udayjpatel2...@gmail.com wrote: Hi All, Need help with replicating cache across clustered CF8 servers. I have an application running on single server and i was