Neo4j 在固定列表上的性能与数据库性能
我有一个数据库表,我想将其导入 Neo4j 中。我想知道 postgresql 中标准索引数据库表的性能与 Neo4j 相比如何(我知道 Neo4j 没有针对静态表结构进行优化,这就是我问的原因)。
I have a database table which I want to import into Neo4j. I was wondering how the performance of a standard indexed database table in postgresql would compare to neo4j (I know neo4j is not optimised for static table structures which is why I am asking).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这主要取决于您要对该数据集执行的操作。对于基于集合的操作,postgres 肯定更快。但是,一旦您进行数据本地操作和大量联接,Neo4j 将与关系数据库同等且更快。
标准:
如果您可以提供更多详细信息,则可能会给出更好的答案。但最简单的方法就是自己尝试。开始使用 Neo4j 不是问题,导入数据集也应该很容易。
HTH
迈克尔·
That depends mainly on the operations you want to execute on that dataset. For set based operations postgres is certainly faster. But as soon as you go with data local operations and lots of joins Neo4j will be en par and faster than a relational database.
Criteria:
If you can provide more details it might be possible to give a better answer. But the easiest thing is to try it on your own. Getting started with Neo4j is no issue and importing your dataset should be easy too.
HTH
Michael