好的,所以最初我跟着this guide來創建一個全文索引,然後我把所有的數據都導入到我的Neo4j服務器上。這些索引工作得很好,現在我試圖使用Sinatra/Ruby與我的Neo4j圖形進行交互。如何在Neo4j.rb中使用我的全文盧塞恩索引?
我使用Neo4j的紅寶石的寶石,我已經創造了電影的模型(movie.rb)與標題as per this wiki entry一個全文索引:
class Movie
include Neo4j::NodeMixin
property :id
property :movieID
property :name, :index => :fulltext
property :year
property :imdB
property :rtRating
property :poster
end
不過,我得到這個錯誤:NameError: uninitialized constant Neo4j::NodeMixin
。該Neo4j的Ruby的維基條目指出:
The neo4j-wrapper is included in the neo4j gem The neo4j-wrapper gem defines these mixins: Neo4j::NodeMixin
所以應該被包含在我的項目...
我不知道如何繼續......有人請幫助我與我的全文索引搜索?