Orientdb。使用索引更正查询

时间:2016-09-19 12:33:11

标签: indexing orientdb orientdb2.2

我对在OrientDB中使用查询中的索引有疑问。

例如,我的Class X只有一个属性x。 X类有很多记录,例如200 000。

查询:select * from X where x=y 执行时间很长。

我在x属性上创建了索引。

查询:select * from X where x=y 执行时间很长。

查询:select expand(z) from index X.x where x=y 快速执行

哪个查询正确(使用索引时):

(1)select * from X where x=y

(2)select expand(z) from index X.x where x=y

0 个答案:

没有答案