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.
Neo4j 的语言 Cypher 的状态如何?我真的很喜欢它,但我想避免 Neo4j 锁定。是否有像 Grmelin 中那样的其他 Cypher 界面?
问候
Cypher 完全是 OSS,请参阅https://github.com/neo4j/community/tree/master/cypher。现在有一个实现,但可能会有更多。现在让它成为标准还为时过早,我们仍在大量试验它。
查看Pixy,这是一种适用于任何与蓝图兼容的图形数据库的声明性图形查询语言。它建立在 Tinkerpop 软件堆栈的 Gremlin/Pipes 之上。
Pixy 通过将 PROLOG 样式的规则和目标转换为表示图遍历操作的 Gremlin 管道,在图数据库上实现复杂的模式匹配和逻辑编程。除了避免供应商锁定之外,它比Cypher有一些额外的优势。
Pixy 在 Apache 2.0 许可下可用。