如何加快neo4j Bloom搜索短语的速度?

发布于 2025-01-11 05:12:22 字数 222 浏览 0 评论 0原文

我想在图表上显示来自特定节点(公司)的所有连接(最多 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无戏配角 2025-01-18 05:12:22

首先,遍历 6 跳可能会很多,尤其是在连接良好的图中。

但是,我建议您使用以下查询来优化您的搜索:

MATCH path=shortestPath((c:Company)-[*1..6]-(e))
where c.property1=$company AND NOT c = e
RETURN path, c

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:

MATCH path=shortestPath((c:Company)-[*1..6]-(e))
where c.property1=$company AND NOT c = e
RETURN path, c
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文