You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I do the query to get top of edges from given rid.
Product is vertex, Relation is Edge. "times" is a property of Relation that tracks the weight of relationship of 2 products.
I want to get top 10 of links with highest time. I do index on "times":
CREATE PROPERTY Relation.times LONG
CREATE INDEX Relation.times NOTUNIQUE_HASH_INDEX.
I did the query:
Select expand(bothE("Relation")) from Product where @Rid = '#70:04' Order by times DESC limit 10.
I got the warning: "fetched more than 50000" to speed up the execution, create an index or change the query to use an existent index.
I still have the result but it is slow. I thought it should apply Indexing in my case.
The text was updated successfully, but these errors were encountered:
OrientDB Version: 2.2.16
Java Version: 1.7
OS: Ubuntu
I do the query to get top of edges from given rid.
Product is vertex, Relation is Edge. "times" is a property of Relation that tracks the weight of relationship of 2 products.
I want to get top 10 of links with highest time. I do index on "times":
CREATE PROPERTY Relation.times LONG
CREATE INDEX Relation.times NOTUNIQUE_HASH_INDEX.
I did the query:
Select expand(bothE("Relation")) from Product where @Rid = '#70:04' Order by times DESC limit 10.
I got the warning: "fetched more than 50000" to speed up the execution, create an index or change the query to use an existent index.
I still have the result but it is slow. I thought it should apply Indexing in my case.
The text was updated successfully, but these errors were encountered: