Sha256: 6c6ab401b0ad0f4b5caede5cbd7c9cf93675e5ca0c72e43525334469ed94b254
Contents?: true
Size: 825 Bytes
Versions: 21
Compression:
Stored size: 825 Bytes
Contents
# Require the gem. This loads the search framework. # require 'picky' # Load your application. This requires the following files in # # * lib/initializers/*.rb # * lib/tokenizers/*.rb # * lib/indexers/*.rb # * lib/query/*.rb # # * app/logging.rb # * app/application.rb # # (in that order). # Loader.load_application # Load the indexes into the memory. # Indexes.load_from_cache # TODO Decide if you want to use the Unicorn killing trick. (Good with large data sets) # # Use Harakiri middleware to kill worker child after X requests. # # Works only with web servers that fork worker children and which # fork new children, like for example Unicorn. # # Rack::Harakiri.after = 50 # use Rack::Harakiri # Start accepting requests. # # Note: Needs to be the same constant name as in app/application.rb. # run PickySearch
Version data entries
21 entries across 21 versions & 1 rubygems