首页 > 代码库 > 初探Ignite

初探Ignite

Guava是一个很方便的本地缓存工具,但是在多节点处理的过程中,本地缓存无法满足数据一致性的问题。分布式缓存Ignite很好的解决了数据一致性,可靠性,事务性等方面的问题。

Ignite支持分区方式和复制方式存储数据,侧重于不同读写比例的分布式缓存使用。同时,Ignite可以缓存整个数据库数据,支持标准sql查询。Ignite可以方便的扩展,节点对等,可靠容灾,支持事务性。

让我们从Hello Ignite开始

Ignite ignite = Ignition.start();
CacheConfiguration<Integer, String> cfg = new CacheConfiguration<Integer, String>();
cfg.setName("myCache");
IgniteCache<Integer, String> cache = ignite.getOrCreateCache(cfg);
cache.put(1, "hello");
cache.put(2, "ignite");
System.out.println(cache.get(1) + " " + cache.get(2));
        
// hello ignite

 

初探Ignite