1
我試圖在neo4j REST服務器上使用自動索引(Community - 1.4.M04)。這是在一個Rails項目中,所以即時使用neography
包裝。neo4j爲REST服務器自動索引
我不可能在網上找到一個統一的教程,從我可以從多個博客跟隨,這裏是我做過什麼:
在的conf/neo4j.properties:
node_keys_indexable=title,bucket_type
node_auto_indexing=true
relationship_auto_indexing=true
之後,使用軌控制檯:
neo = Neography::Rest.new
neo.create_node_index("node_auto_index", "fulltext", "lucene")
我可以看到在WebAdmin的索引,但查詢數據:
localhost:7474/db/data/index/node/node_auto_index/name/test_name
不返回任何數據。
任何幫助將不勝感激。
什麼時候,你是如何添加數據的?在創建索引之前?你能顯示實際添加數據的代碼片段嗎? –
而您不索引名稱屬性,但標題屬性。 –