You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
267 B

require 'open-uri'
class SolrController < ApplicationController
$select_url = 'http://localhost:8983/solr/select/'
def index
@search = request[:q]
if @search != nil
@results = open("#{$select_url}?q=#{@search}&indent=on").read
end
end
end