我想知道如何在gremlin中使用getVertices或類似的方法來執行LIKE查詢,這會碰到索引。我使用OrientDB 2.1.11和Gremlin。OrientDB Gremlin - g.getVertices在屬性上執行全文搜索/匹配
這工作,但不會完全匹配:
g.getVertices('city_state.city','VANCOUVER')
我需要做的是類似以下(不工作,雖然):如果我能
g.getVertices('city_state.city','VANC%')
將是真棒如果支持,使用LUCENE索引。
是正確的:-----> g.getVerticesOfClass( 'city_state') (''city')。matches('VAN。*')} –