Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 py2neo 搜索具有特定属性的节点?(我有一堆带有{“word”:“some word”}的节点,我希望能够通过节点搜索找到word属性具有特定值的节点)
我建议您考虑使用索引来满足这种要求。您可以根据需要搜索的属性对节点进行索引,然后参考此索引进行搜索。
否则,您将得到一个相当不理想的 Cypher 查询:
START n=node(*) WHERE n.word! = 'some word' RETURN n
我建议不要使用它,因为它必须筛选整个数据库,因此随着数据库的增长会非常消耗资源并且速度很慢。