Class: Riddle::Configuration::Searchd

Inherits:
Section
  • Object
show all
Defined in:
lib/riddle/configuration/searchd.rb,
lib/riddle/0.9.9/configuration/searchd.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#mysql41Object

Returns the value of attribute mysql41.



26
27
28
# File 'lib/riddle/configuration/searchd.rb', line 26

def mysql41
  @mysql41
end

Class Method Details

.settingsObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/riddle/configuration/searchd.rb', line 4

def self.settings
  [
    :listen, :address, :port, :log, :query_log,
    :query_log_format, :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, :snippets_file_prefix, :collation_server,
    :collation_libc_locale, :plugin_dir, :mysql_version_string,
    :rt_flush_period, :thread_stack, :expansion_limit,
    :compat_sphinxql_magics, :watchdog, :prefork_rotation_throttle,
    :sphinxql_state, :ha_ping_interval, :ha_period_karma,
    :persistent_connections_limit, :rt_merge_iops, :rt_merge_maxiosize,
    :predicted_time_costs, :snippets_file_prefix, :shutdown_timeout,
    :ondisk_attrs_default, :client_key
  ]
end

Instance Method Details

#renderObject

Raises:



28
29
30
31
32
33
34
35
36
# File 'lib/riddle/configuration/searchd.rb', line 28

def render
  raise ConfigurationError unless valid?

  (
    ["searchd", "{"] +
    settings_body +
    ["}", ""]
  ).join("\n")
end

#valid?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/riddle/configuration/searchd.rb', line 38

def valid?
  !( @port.nil? || @pid_file.nil? )
end