Is it a bad idea for multiple ColdFusion applications to use the same client variable store?
coldfusion
Solution
You can use the same client data store. The CDATA table has an 'app' column that stores the coldfusion application name. That column will keep your data unique to each application.
Problem
We have two ColdFusion applications that share a common database. There are three instances of each application. (One instance of each application runs on each of three servers.) I can see that the three instances of a given application should share a client variable store. (Load-balancing can cause a single user session to bounce between the three instances.) My question is: Is there any danger to having all instances of both applications share the same data store? Or should only one application be pointing at a given data store?