Sha256: b2c257fe0adbcf24abc44adc444ab0ee08e5f8b1406a5504bb16d8f5685be810

Contents?: true

Size: 984 Bytes

Versions: 4

Compression:

Stored size: 984 Bytes

Contents

module Riddle
  class Configuration
    class Searchd < Riddle::Configuration::Section
      self.settings = [:listen, :address, :port, :log, :query_log,
        :read_timeout, :client_timeout, :max_children, :pid_file, :max_matches,
        :seamless_rotate, :preopen_indexes, :unlink_old, :attr_flush_period,
        :ondisk_dict_default, :max_packet_size, :mva_updates_pool,
        :crash_log_path, :max_filters, :max_filter_values, :listen_backlog,
        :read_buffer, :read_unhinted, :max_batch_queries, :subtree_docs_cache,
        :subtree_hits_cache, :workers, :dist_threads, :binlog_path,
        :binlog_flush, :binlog_max_log_size]
      
      attr_accessor *self.settings
            
      def render
        raise ConfigurationError unless valid?
        
        (
          ["searchd", "{"] +
          settings_body +
          ["}", ""]
        ).join("\n")
      end
      
      def valid?
        !( @port.nil? || @pid_file.nil? )
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
riddle-1.2.2 lib/riddle/configuration/searchd.rb
riddle-1.2.1 lib/riddle/configuration/searchd.rb
riddle-1.2.0 lib/riddle/configuration/searchd.rb
riddle-1.1.0 lib/riddle/configuration/searchd.rb