如何加快neo4j Bloom搜索短语的速度?
我想在图表上显示来自特定节点(公司)的所有连接(最多 6 个)。
我只是使用了以下内容:
MATCH path=(c:Company)-[*1..6]-()
where c.property1=$company
RETURN path, c
但执行查询需要花费大量时间。
有什么建议如何修改此查询或如何加快该过程吗?
此致!
I would like to show on the graph all connections (max.6) from the specific node (Company).
I simply used the below:
MATCH path=(c:Company)-[*1..6]-()
where c.property1=$company
RETURN path, c
but it takes lot of time to execute the query.
Any suggestion how to modify this query or how to speed up the process?
Best regards!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,遍历 6 跳可能会很多,尤其是在连接良好的图中。
但是,我建议您使用以下查询来优化您的搜索:
First of all, traversing 6 hops can be a lot especially in a well-connected graph.
However, I would suggest you use the following query to optimize your search: