初探Ignite
Posted coshaho
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初探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的主要内容,如果未能解决你的问题,请参考以下文章
初探Azure的保留实例(Reserved Instance)
不能将Ignite loadCache方法与IgniteBiPredicate一起使用