Hi, I'm learning now apache ignite. During test I met the following isssues. In the CacheAutoStoreExample, I'd like to modify to load form not H2 but Maria-DB.
/** * Example store factory. */ private static final class CacheJdbcPojoStoreExampleFactory extends CacheJdbcPojoStoreFactory<Long, Person> { /** {@inheritDoc} */ @Override public CacheJdbcPojoStore<Long, Person> create() { setDataSource(JdbcConnectionPool.create("jdbc:h2:tcp://localhost/mem:ExampleDb", "sa", "")); return super.create(); } } Even though I gave many efforts, I didn't get any ideas. Could someone help me on this urgently? Thanks in advace. -sy -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/CacheJdbcPojoStoreExampleFactory-for-Maria-DB-tp7479.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.