I have an application that creates persistent caches on a fixed region (MYAPP_REGION
) with fixed cached names (MyApp.Data.Class1
, MyApp.Data.Class2
, ...etc.)
I am deploying 2 instances of this application for 2 different customers, but they use the same ignite clusters.
What is the correct way to discriminate the data between the instances: do I change the cache name to be by customer or a region per customer is enough?
In a rdbms scenario, we would create 2 different databases; so I am wondering how we would achieve the same thing when using ignite as storage solution.