各位大俠大家好:
看著老外的教程把 sunspot 搭配著 slor 搞了起來,可有件事我很納悶 目前我還是跑著 rails 內鍵的伺服器,可是每次我把應用程式跑起來 就要再應用程式的目錄下執行下述指令。
rake sunspot:solr:start
有什麼法子該它能隨伺服器一併啟動,懇請賜教
另外我知道在做全文檢索時只能應對一個欄位,我的資料量也不是很多 有時想要連 int 的欄位像是 student_id 也想要讓它也一併搜索一下 有誰知道這解法嗎?
自动调动在/etc/init.d 里加 欄位是啥么意思,字段?可以加很多欄位还可以加权重。
searchable(:ignore_attribute_changes_of=>ignored_index_attributes,
:if => proc { |model| !model.deleted_at }) do
text :name, :stored => true,:more_like_this=>true
text :token_name do
Topic.tokens(name)
end
#text :content
string :user_id
time :created_at
end
hits= Sunspot.search([Question,Topic,User]) do
keywords params[:query] do
# fields(:conent, :name => 2.0)
boost_fields :name => 2.0
query_phrase_slop 1
end
adjust_solr_params do |sunspot_params|
sunspot_params[:start] = 0
sunspot_params[:rows] = 9
end
end.hits
kehao 您好: 是的,欄位在內地稱之為字段。上面這兩段程式是寫在 Student 資料模型裏?全然不明白其作用 能請您解釋一下嗎?我的設置如下:
searchable do
text :cname, :ename, :email, :student_id,:telephone, :mobile_phone, :parents_phone, :company_phone, :jobs, :session_description
end
就是那個學生 id 是 int 字段長度 11.
另外您說把這 rake sunspot:solr:start 扔進 /etc/init.d 這部份好像要寫 shell script 吧?這我就不會了 orz
kehao 您好: 會想要加入搜尋學生欄位,是因為作業人員懶得再去點 search from。想說全文檢索都那麼便利了 我單位的學生數也不到 2 千人,就問了我把它塞進去成不成?反正筆數沒那麼多純然就是圖個方便就是了