我对在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