当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

Neo4j 的 JRuby 封装 Cadet

作者:小梦 来源: 网络 时间: 2024-08-13 阅读:

Cadet 是使用 JRuby 实现的嵌入式 Neo4j,可以让你方便的在 JRuby 应用中使用 Neo4j。

示例代码:

require 'cadet'Cadet::Session.open "path/to/graph.db/" do#for a batch inserter session:#Cadet::BatchInserter::Session.open "path/to/graph.db/" do#bear in mind that, the database directory needs to be clean before establishing a BatchInserter session.  transaction do    Person_by_name("Javad").lives_in_to City_by_name("Chicago")  endend


相关阅读

热点阅读

网友最爱