Hi Dan, You can start caches dynamically after the nodes are started (just provide proper configuration to Ignite.createCache() method). But I'm not sure how you're going to live without Ignition.start(). You need an embedded node (probably client) anyway.
E.g., this scenario will work: - Start remote server nodes (optional). - Start your application and use Ignition.start() to start an embedded client. - Dynamically start all required caches using Ignite.createCache() method. - Initialize Hibernate session factory. When starting nodes you can use configuration that doesn't have caches. Does this work for you? -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Documentation-on-configuring-L2-cache-programatically-tp640p641.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
