Hello, I am new to Ignite and have a few questions. If I have two process running the following code:
Process 1:
Ignite grid = Ignition::Start(cfg);
Cache<int, std::string> cache = grid.GetOrCreateCache<int,
std::string>("myCache");
Process 2:
Ignite grid = Ignition::Start(cfg);
Cache<int, std::string> cache = grid.GetCache<int,
std::string>("myCache");
Will Cache be duplicated to the grid in process 2?
Thanks,
Anthony
