Apache Ignite 支持的索引类型

Type of Indices supported by Apache Ignite

在 Apache ignite 的文档中,它声明它们为 RDDS 提供索引功能。

同样在下面link我们可以找到创建索引的方法。 http://apacheignite.gridgain.org/docs/sql-queries

是否有任何文档说明它在下面支持哪种索引(B 树、R 树)

Ignite 索引基于 SnapTreeMap [1] 或 ConcurrentSkipListMap。前者用于存储在堆外内存中的索引,而后者用于堆上。

[1] https://github.com/nbronson/snaptree