Sha256: 40bd1caa2df057487d7fb67354c1117ce7bbbed18b8a632dc48d28684101300a

Contents?: true

Size: 1.54 KB

Versions: 17

Compression:

Stored size: 1.54 KB

Contents

module Sunspot
  # The Sunspot::Configuration module provides a factory method for Sunspot
  # configuration objects. Available properties are:
  #
  # Sunspot.config.solr.url::
  #   The URL at which to connect to Solr
  #   (default: 'http://localhost:8983/solr')
  # Sunspot.config.pagination.default_per_page::
  #   Solr always paginates its results. This sets Sunspot's default result
  #   count per page if it is not explicitly specified in the query.
  # Sunspot.config.indexing.default_batch_size::
  #   This sets the batch size for indexing, default is 50
  #
  module Configuration
    class <<self
      # Factory method to build configuration instances.
      #
      # ==== Returns
      #
      # LightConfig::Configuration:: new configuration instance with defaults
      #
      def build #:nodoc:
        LightConfig.build do
          solr do
            url 'http://127.0.0.1:8983/solr'
            read_timeout nil
            open_timeout nil
          end
          master_solr do
            url nil
          end
          pagination do
            default_per_page 30
          end
          indexing do
            default_batch_size 50
          end
        end
      end
      
      # Location for the default solr configuration files,
      # required for bootstrapping a new solr installation
      #
      # ==== Returns
      #
      # String:: Directory with default solr config files
      #
      def solr_default_configuration_location
        File.join( File.dirname(__FILE__), '../../solr/solr/conf' )
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 5 rubygems

Version Path
sunspot-2.0.0 lib/sunspot/configuration.rb
sunspot-2.0.0.pre.130115 lib/sunspot/configuration.rb
gojee-sunspot-2.0.5 lib/sunspot/configuration.rb
sunspot-2.0.0.pre.120925 lib/sunspot/configuration.rb
sunspot_solr-2.0.0.pre.120924 sunspot/lib/sunspot/configuration.rb
sunspot_rails-2.0.0.pre.120924 sunspot/lib/sunspot/configuration.rb
sunspot-2.0.0.pre.120924 sunspot/lib/sunspot/configuration.rb
gojee-sunspot-2.0.4 lib/sunspot/configuration.rb
gojee-sunspot-2.0.2 lib/sunspot/configuration.rb
sunspot-2.0.0.pre.120720 lib/sunspot/configuration.rb
sunspot-2.0.0.pre.120417 lib/sunspot/configuration.rb
sunspot-2.0.0.pre.120415 lib/sunspot/configuration.rb
erichummel-sunspot-2.0.0.pre.111215d lib/sunspot/configuration.rb
erichummel-sunspot-2.0.0.pre.111215c lib/sunspot/configuration.rb
erichummel-sunspot-2.0.0.pre.111215b lib/sunspot/configuration.rb
erichummel-sunspot-2.0.0.pre.111215a lib/sunspot/configuration.rb
erichummel-sunspot-2.0.0.pre.111215 lib/sunspot/configuration.rb