Hi, using 2.7.3
I start my client as...
TcpDiscoverySpi spi = new TcpDiscoverySpi();
TcpDiscoveryVmIpFinder ipFinder = new TcpDiscoveryVmIpFinder();
ipFinder.setAddresses(addresses.getList());
spi.setIpFinder(ipFinder);
igniteConfig.setDiscoverySpi(spi);
igniteConfig.setClientMode(true);
I then also create a cache dynamically as...
CacheConfiguration cacheCfg = new CacheConfiguration("DJTAZZ");
cacheCfg.setCacheMode(CacheMode.REPLICATED);
this.cache =
igniteClient.getIgniteInstance().getOrCreateCache(cacheCfg);
In ignitegridvisor.sh when I run the "cache" command it seems to freeze
until I disconnect my application.
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/