tinkerpop

    5热度

    1回答

    我创建了一个数据库出orientdb控制台Orientdb无法打开数据库: create database plocal:/C:/Development/orientdb/databases/testdb root root plocal graph 我启动服务器,以确保我的数据库创建成功。我打开 的webinterface: localhost:2480 而且我使用root用户和root

    2热度

    1回答

    目前我使用特定的泰坦像 TitanType name = graph.getType("name"); 和 graph.makeKey("name").dataType(String.class).indexed(Vertex.class) 方法我怎样才能将这段代码从蓝图方法,以便将非泰坦图形数据库工作? This post声称无法将createKeyIndex转换为makeKey?如果不

    2热度

    1回答

    我试图设置Rexster(版本2.5)与OrientDB(1.7 rc2)一起使用。问题是我不知道我应该在图形配置中的<graph-type>字段中放置什么。最新的Rexster文档(https://github.com/tinkerpop/rexster/wiki/Specific-Graph-Configurations)声明OrientDB支持已从软件包中删除,因此必须从OrientDB分发

    1热度

    1回答

    TitanVertex中实现的蓝图方法vertex.addProperty(key, value);和Element中的vertex.setProperty(key, value);之间有什么区别? 如果有差异,如何将addProperty转换成setProperty?

    0热度

    1回答

    有谁知道如何托管“Tinkerpop Rexster”服务器并与“Tinkerpop框架”通信? 这是我找到的唯一一个页面,它没有帮助。 https://github.com/tinkerpop/rexster/tree/master/rexster-kibbles/frames-kibble 任何链接和建议,将不胜感激!

    0热度

    1回答

    我使用泰坦和数据库Akiban Persistit。我想知道,多重访问写入和读取时数据库的行为如何。 这是一个阻塞状态?或者我可以期待什么,我该注意什么? 非常感谢您的任何意见

    1热度

    1回答

    当我建立我的Maven项目或生成使用mvn eclipse:eclipse,我碰到下面的错误我的Eclipse配置: [ERROR] Failed to execute goal org.codehaus.enunciate:maven-enunciate-plugin:1.28:docs (default) on project appserver-server: Problem assembl

    0热度

    1回答

    我想加载TinkerGraph.FileType.GRAPHML类型保存的tinkerpop数据库。 这是我的代码: public Graph getDatabase(String path) { org.apache.commons.configuration.Configuration conf = new BaseConfiguration(); conf.setProp

    1热度

    1回答

    我试图在Java中编写Rexster扩展,其中包括使用Neo4j 2.0 Lucene indices的查询节点。 从我能找到的几条线索(主要是旧的Google Group线程)中,似乎无法使用Blueprint's Graph。 我想到了一个可能的解决方案,我从扩展的访问底层Neo4jGraph类: @RexsterContext Graph graph 参数,但我不知道如何做到这一点。 理

    3热度

    1回答

    我有我的第一次去与框架和我的Java很生锈。我坚持通过框架将信息写入数据库。我一直在关注文档并拥有一个Person界面。 public interface Person { @Property("name") public String getName(); @Adjacency(label="knows") public Iterable<Person>