使用Neography进行Neo4j自动索引

时间:2012-05-17 18:47:55

标签: neo4j neography

尝试使用从this thread

收集的详细信息实施auto_indexing

使用索引检索节点并没有取得任何成功。

我的neo4j.properties:

node_keys_indexable=title,bucket_type,username
node_auto_indexing=true
relationship_auto_indexing=true
relationship_keys_indexable=since

这是我创建节点的方法。节点创建有效。

user = Neo.create_node({:class_name => "User", :username => "foobar1"})

这是我使用索引找到节点的方法:

start user=node:node_auto_index(username = 'foobar1') return user

不会返回任何内容。有什么想法吗?有没有办法检查索引的内容?

0 个答案:

没有答案