Sha256: 98c603e690ac0c42126a3264c4c50379e61ee2c7cc6f301f7b6495a4a98f3f0a
Contents?: true
Size: 733 Bytes
Versions: 2
Compression:
Stored size: 733 Bytes
Contents
class SphinxController def initialize config.searchd.mysql41 = 9307 end def setup FileUtils.mkdir_p config.indices_location config.render_to_file && index ThinkingSphinx::Configuration.reset ActiveSupport::Dependencies.loaded.each do |path| $LOADED_FEATURES.delete "#{path}.rb" end ActiveSupport::Dependencies.clear config.searchd.mysql41 = 9307 config.settings['quiet_deltas'] = true config.settings['attribute_updates'] = true end def start config.controller.start end def stop config.controller.stop end def index(*indices) config.controller.index *indices end private def config ThinkingSphinx::Configuration.instance end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
thinking-sphinx-3.0.0 | spec/acceptance/support/sphinx_controller.rb |
thinking-sphinx-3.0.0.rc | spec/acceptance/support/sphinx_controller.rb |