Graph database for .NET(.NET 图形数据库)
问题描述
我一直在设计一个基于 .NET/Mono 框架的应用程序,它应该大量使用图中最短路径理论,我想使用原生解决方案遍历图的节点,而不是实施难以维护且会严重影响性能的替代解决方案.
I've been designing an application, based on .NET/Mono framework, which should make an heavy use of the shortest-path in a graph theories and I would like to use a native solution to traverse the nodes of the graph, instead of implementing surrogate solutions which would be hardly maintainable and would massively affect performances.
我找到了一个非常适合我的范围的应用程序:neo4j.
I've found an application which would be perfect for my scope: neo4j.
不幸的是,这个应用程序纯粹是用 Java 代码编写的,由于两种架构之间的巨大差异,它不能移植到 .NET.
Unfortunately, this application is purely written in Java code and it's not portable to .NET, because of the massive differences between the two architectures.
有没有人知道是否有任何 Neo4j 端口或 .NET 的类似解决方案?
Is anyone out there knows if is it there any port of neo4j or a similar solution for .NET?
推荐答案
微软也在开发一个 - 三位一体
Microsoft is also working on one - Trinity
编辑 1:
我最近才遇到这个 repository.我还没有查看代码或使用它,但它有 .NET 接口:
Edit 1:
I just recently came across this repository. I haven't looked at the code or used it yet, but it has .NET interfaces for:
- 蓝图
- 雷克斯特
- 管道
这些实用程序可用于连接多个图形数据库,包括 neo4j 和 OrientDB.如需更多信息,请查看 TinkerPop.
These utilities can be used to connect with multiple Graph Databases including neo4j and OrientDB. For more information also look at TinkerPop.
这篇关于.NET 图形数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.NET 图形数据库


- 获取数字的最后一位 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 转换 ldap 日期 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01