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
The trouble is, we don't always know what kind/type/label of vertex we are looking for. Mostly we only know its uri property value and we want to get the vertex with that particular uri value.
Is it possible to create an index on the property uri across all types so that gremlin queries like this:
If you have tons of types can actually slow down things. I suggest also to create vertex type with 1 bucket only if you have many vertex types. This will speed up such lookup.
Once the database starts getting populated with nodes and edges gremlin queries like this start executing slowly:
However, if I do this:
Then run queries like this then they execute quickly:
The trouble is, we don't always know what kind/type/label of vertex we are looking for. Mostly we only know its
uri
property value and we want to get the vertex with that particularuri
value.Is it possible to create an index on the property
uri
across all types so that gremlin queries like this:always use an index for looking up the
uri
value?In other words, is it possible to create a single index on a property (that all nodes (of all types) will have) that gremlin queries will use?
ArcadeDB Version:
v.23.10.1-SNAPSHOT
Runs on Linux 5.15.0-125-generic - OpenJDK 64-Bit Server VM 11.0.24 (Temurin-11.0.24+8)
The text was updated successfully, but these errors were encountered: