Apache Ignite 的主要思想是什么?

What's the main idea of Apache Ignite?

GC可能会释放内存和资源,当缓存被命中时如何使对象可重用? 我想用 Spark 部署 Ignite,我对跨多节点保持对象感到困惑。有人可以向我解释吗?

填充缓存后,一个简单的 Cache.get() 操作将 return 相同的对象。您可以查看 Ignite 中的数据网格文档:https://ignite.incubator.apache.org/features/datagrid.html

此外,Ignite 还带有共享 RDD 实现,用于在 Spark 作业和应用程序之间共享状态。我认为这可能是您需要的:https://ignite.incubator.apache.org/features/igniterdd.html