尝试使用从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
不会返回任何内容。有什么想法吗?有没有办法检查索引的内容?