一些具體的結果我用太陽黑子Solr的索引和我們的Rails應用程序 search = Product.search do
with(:categoery, [1,2,3])
order_by(:priority)
#and some other filters
end
尋找,但對於一些特定的用戶,我想展示一些產品與ID假設[8,9]排在搜索
我正在使用太陽黑子索引和Rspec進行測試的搜索API。 我有一個測試我的搜索控制器: context 'when doing a simple search', :type => :request do
let!(:instance_of_my_model) { create(:instance_of_my_model) }
it 'return the correct re
我有一個rake任務可以與模型一起工作。但我需要告訴模型他們正在使用Rake而不是在應用程序中。我最好的想法是在運行rake任務之前在命令行上設置環境變量,但這需要團隊中的每個人都記住使用環境變量。具體來說,我有一個if語句可以在運行rake任務時跳過加載Delayed::Job的handle_asynchronously。 class Thing < ActiveRecord::Base