Module: ThinkingSphinx
- Extended by:
- SearchMethods::ClassMethods
- Defined in:
- lib/thinking_sphinx.rb,
lib/thinking_sphinx/facet.rb,
lib/thinking_sphinx/field.rb,
lib/thinking_sphinx/index.rb,
lib/thinking_sphinx/deltas.rb,
lib/thinking_sphinx/search.rb,
lib/thinking_sphinx/source.rb,
lib/thinking_sphinx/property.rb,
lib/thinking_sphinx/attribute.rb,
lib/thinking_sphinx/excerpter.rb,
lib/thinking_sphinx/source/sql.rb,
lib/thinking_sphinx/association.rb,
lib/thinking_sphinx/class_facet.rb,
lib/thinking_sphinx/core/string.rb,
lib/thinking_sphinx/auto_version.rb,
lib/thinking_sphinx/facet_search.rb,
lib/thinking_sphinx/active_record.rb,
lib/thinking_sphinx/configuration.rb,
lib/thinking_sphinx/index/builder.rb,
lib/thinking_sphinx/search_methods.rb,
lib/thinking_sphinx/rails_additions.rb,
lib/thinking_sphinx/rails_additions.rb,
lib/thinking_sphinx/rails_additions.rb,
lib/thinking_sphinx/rails_additions.rb,
lib/thinking_sphinx/rails_additions.rb,
lib/thinking_sphinx/index/faux_column.rb,
lib/thinking_sphinx/active_record/delta.rb,
lib/thinking_sphinx/active_record/scopes.rb,
lib/thinking_sphinx/deltas/default_delta.rb,
lib/thinking_sphinx/adapters/mysql_adapter.rb,
lib/thinking_sphinx/adapters/abstract_adapter.rb,
lib/thinking_sphinx/source/internal_properties.rb,
lib/thinking_sphinx/adapters/postgresql_adapter.rb,
lib/thinking_sphinx/active_record/attribute_updates.rb,
lib/thinking_sphinx/active_record/has_many_association.rb,
lib/thinking_sphinx/rails_additions.rb,
lib/thinking_sphinx/rails_additions.rb,
lib/thinking_sphinx/rails_additions.rb
Defined Under Namespace
Modules: AbstractQuotedTableName, ActiveRecord, ActiveRecordQuotedName, ActiveRecordStoreFullSTIClass, ArrayExtractOptions, ClassAttributeMethods, Core, Deltas, HashExcept, MetaClass, MysqlQuotedTableName, SearchMethods Classes: AbstractAdapter, Association, Attribute, AutoVersion, ClassFacet, Configuration, ConnectionError, Context, Excerpter, Facet, FacetSearch, Field, Index, MysqlAdapter, PostgreSQLAdapter, Property, Search, Source, StaleIdsException, Test
Class Method Summary collapse
-
.context ⇒ Object
The collection of indexed models.
-
.define_indexes=(value) ⇒ Object
Enable/disable indexes - you may want to do this while migrating data.
-
.define_indexes? ⇒ Boolean
Check if index definition is disabled.
-
.deltas_enabled=(value) ⇒ Object
Enable/disable all delta indexing.
-
.deltas_enabled? ⇒ Boolean
Check if delta indexing is enabled.
- .jruby? ⇒ Boolean
- .microsoft? ⇒ Boolean
- .mysql? ⇒ Boolean
- .pid_active?(pid) ⇒ Boolean
-
.remote_sphinx=(value) ⇒ Object
Tells Thinking Sphinx that Sphinx is running on a different machine, and thus it can’t reliably guess whether it is running or not (ie: the #sphinx_running? method), and so just assumes it is.
-
.remote_sphinx? ⇒ Boolean
An indication of whether Sphinx is running on a remote machine instead of the same machine.
- .reset_context! ⇒ Object
- .sphinx_pid ⇒ Object
-
.sphinx_running? ⇒ Boolean
Check if Sphinx is running.
-
.sphinx_running_by_pid? ⇒ Boolean
Check if Sphinx is actually running, provided the pid is on the same machine as this code.
- .suppress_delta_output=(value) ⇒ Object
- .suppress_delta_output? ⇒ Boolean
- .unique_id_expression(offset = nil) ⇒ Object
-
.updates_enabled=(value) ⇒ Object
Enable/disable updates to Sphinx.
-
.updates_enabled? ⇒ Boolean
Check if updates are enabled.
-
.use_group_by_shortcut? ⇒ Boolean
Checks to see if MySQL will allow simplistic GROUP BY statements.
-
.version ⇒ String
The current version of Thinking Sphinx.
Methods included from SearchMethods::ClassMethods
count, facets, search, search_context, search_count, search_for_id, search_for_ids
Class Method Details
.context ⇒ Object
The collection of indexed models. Keep in mind that Rails lazily loads its classes, so this may not actually be populated with all the models that have Sphinx indexes.
66 67 68 69 70 71 72 73 |
# File 'lib/thinking_sphinx.rb', line 66 def self.context if Thread.current[:thinking_sphinx_context].nil? Thread.current[:thinking_sphinx_context] = ThinkingSphinx::Context.new Thread.current[:thinking_sphinx_context].prepare end Thread.current[:thinking_sphinx_context] end |
.define_indexes=(value) ⇒ Object
Enable/disable indexes - you may want to do this while migrating data.
ThinkingSphinx.define_indexes = false
97 98 99 |
# File 'lib/thinking_sphinx.rb', line 97 def self.define_indexes=(value) Thread.current[:thinking_sphinx_define_indexes] = value end |
.define_indexes? ⇒ Boolean
Check if index definition is disabled.
85 86 87 88 89 90 91 |
# File 'lib/thinking_sphinx.rb', line 85 def self.define_indexes? if Thread.current[:thinking_sphinx_define_indexes].nil? Thread.current[:thinking_sphinx_define_indexes] = true end Thread.current[:thinking_sphinx_define_indexes] end |
.deltas_enabled=(value) ⇒ Object
Enable/disable all delta indexing.
ThinkingSphinx.deltas_enabled = false
114 115 116 |
# File 'lib/thinking_sphinx.rb', line 114 def self.deltas_enabled=(value) Thread.current[:thinking_sphinx_deltas_enabled] = value end |
.deltas_enabled? ⇒ Boolean
Check if delta indexing is enabled.
103 104 105 106 107 108 |
# File 'lib/thinking_sphinx.rb', line 103 def self.deltas_enabled? if Thread.current[:thinking_sphinx_deltas_enabled].nil? return true end Thread.current[:thinking_sphinx_deltas_enabled] end |
.jruby? ⇒ Boolean
211 212 213 |
# File 'lib/thinking_sphinx.rb', line 211 def self.jruby? defined?(JRUBY_VERSION) end |
.microsoft? ⇒ Boolean
207 208 209 |
# File 'lib/thinking_sphinx.rb', line 207 def self.microsoft? RUBY_PLATFORM =~ /mswin/ end |
.mysql? ⇒ Boolean
215 216 217 218 219 220 |
# File 'lib/thinking_sphinx.rb', line 215 def self.mysql? ::ActiveRecord::Base.connection.class.name.demodulize == "MysqlAdapter" || ::ActiveRecord::Base.connection.class.name.demodulize == "MysqlplusAdapter" || ( jruby? && ::ActiveRecord::Base.connection.config[:adapter] == "jdbcmysql" ) end |
.pid_active?(pid) ⇒ Boolean
201 202 203 204 205 |
# File 'lib/thinking_sphinx.rb', line 201 def self.pid_active?(pid) !!Process.kill(0, pid.to_i) rescue Exception => e false end |
.remote_sphinx=(value) ⇒ Object
Tells Thinking Sphinx that Sphinx is running on a different machine, and thus it can’t reliably guess whether it is running or not (ie: the #sphinx_running? method), and so just assumes it is.
Useful for multi-machine deployments. Set it in your production.rb file.
ThinkingSphinx.remote_sphinx = true
174 175 176 |
# File 'lib/thinking_sphinx.rb', line 174 def self.remote_sphinx=(value) Thread.current[:thinking_sphinx_remote_sphinx] = value end |
.remote_sphinx? ⇒ Boolean
An indication of whether Sphinx is running on a remote machine instead of the same machine.
162 163 164 |
# File 'lib/thinking_sphinx.rb', line 162 def self.remote_sphinx? Thread.current[:thinking_sphinx_remote_sphinx] ||= false end |
.reset_context! ⇒ Object
75 76 77 |
# File 'lib/thinking_sphinx.rb', line 75 def self.reset_context! Thread.current[:thinking_sphinx_context] = nil end |
.sphinx_pid ⇒ Object
193 194 195 196 197 198 199 |
# File 'lib/thinking_sphinx.rb', line 193 def self.sphinx_pid if File.exists?(ThinkingSphinx::Configuration.instance.pid_file) File.read(ThinkingSphinx::Configuration.instance.pid_file)[/\d+/] else nil end end |
.sphinx_running? ⇒ Boolean
Check if Sphinx is running. If remote_sphinx is set to true (indicating Sphinx is on a different machine), this will always return true, and you will have to handle any connection errors yourself.
182 183 184 |
# File 'lib/thinking_sphinx.rb', line 182 def self.sphinx_running? remote_sphinx? || sphinx_running_by_pid? end |
.sphinx_running_by_pid? ⇒ Boolean
Check if Sphinx is actually running, provided the pid is on the same machine as this code.
189 190 191 |
# File 'lib/thinking_sphinx.rb', line 189 def self.sphinx_running_by_pid? !!sphinx_pid && pid_active?(sphinx_pid) end |
.suppress_delta_output=(value) ⇒ Object
140 141 142 |
# File 'lib/thinking_sphinx.rb', line 140 def self.suppress_delta_output=(value) Thread.current[:thinking_sphinx_suppress_delta_output] = value end |
.suppress_delta_output? ⇒ Boolean
136 137 138 |
# File 'lib/thinking_sphinx.rb', line 136 def self.suppress_delta_output? Thread.current[:thinking_sphinx_suppress_delta_output] ||= false end |
.unique_id_expression(offset = nil) ⇒ Object
79 80 81 |
# File 'lib/thinking_sphinx.rb', line 79 def self.unique_id_expression(offset = nil) "* #{context.indexed_models.size} + #{offset || 0}" end |
.updates_enabled=(value) ⇒ Object
Enable/disable updates to Sphinx
ThinkingSphinx.updates_enabled = false
132 133 134 |
# File 'lib/thinking_sphinx.rb', line 132 def self.updates_enabled=(value) Thread.current[:thinking_sphinx_updates_enabled] = value end |
.updates_enabled? ⇒ Boolean
Check if updates are enabled. True by default, unless within the test environment.
121 122 123 124 125 126 |
# File 'lib/thinking_sphinx.rb', line 121 def self.updates_enabled? if Thread.current[:thinking_sphinx_updates_enabled].nil? return true end Thread.current[:thinking_sphinx_updates_enabled] end |
.use_group_by_shortcut? ⇒ Boolean
Checks to see if MySQL will allow simplistic GROUP BY statements. If not, or if not using MySQL, this will return false.
147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/thinking_sphinx.rb', line 147 def self.use_group_by_shortcut? if Thread.current[:thinking_sphinx_use_group_by_shortcut].nil? Thread.current[:thinking_sphinx_use_group_by_shortcut] = !!( mysql? && ::ActiveRecord::Base.connection.select_all( "SELECT @@global.sql_mode, @@session.sql_mode;" ).all? { |key,value| value.nil? || value[/ONLY_FULL_GROUP_BY/].nil? } ) end Thread.current[:thinking_sphinx_use_group_by_shortcut] end |
.version ⇒ String
The current version of Thinking Sphinx.
57 58 59 60 61 |
# File 'lib/thinking_sphinx.rb', line 57 def self.version open(File.join(File.dirname(__FILE__), '../VERSION')) { |f| f.read.strip } end |