Sha256: 9b2e460023e276b9f3f6e6bdfe87179f9179364ce9809027723e6a65619cc45f

Contents?: true

Size: 1.57 KB

Versions: 1

Compression:

Stored size: 1.57 KB

Contents

module Sunspot
  # The Sunspot::Configuration module provides a factory method for Sunspot
  # configuration objects. Available properties are:
  #
  # Sunspot.config.http_client::
  #   The client to use for HTTP communication with Solr. Available options are
  #   :net_http, which is the default and uses Ruby's built-in pure-Ruby HTTP
  #   library; and :curb, which uses Ruby's libcurl bindings and requires
  #   installation of the 'curb' gem.
  # 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.
  #
  module Configuration
    class <<self
      # Factory method to build configuration instances.
      #
      # ==== Returns
      #
      # LightConfig::Configuration:: new configuration instance with defaults
      #
      def build #:nodoc:
        LightConfig.build do
          http_client :net_http
          solr do
            url 'http://127.0.0.1:8983/solr'
          end
          pagination do
            default_per_page 30
          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

1 entries across 1 versions & 1 rubygems

Version Path
benjaminkrause-sunspot-0.9.7 lib/sunspot/configuration.rb