Re: Count Query Optimization
AMIYA KUMAR SAHOO
Hi Vinayak, For query 1. What is the degree centrality of vertex having property A. How much percentage satisfy out edge having property E. If it is small, VCI will help to increase speed for this traversal. You can give it a try to below query, not sure if it will speed up. g.V().has('property1', 'A'). outE().has('property1','E'). inV().has('property1', 'B'). dedup().by(path()). count() On Fri, 12 Mar 2021, 13:30 Vinayak Bali, <vinayakbali16@...> wrote:
|
|