Tagged Questions

Thinking Sphinx is a Ruby library that connects ActiveRecord models to the Sphinx search service.

learn more… | top users | synonyms

5
votes
2answers
447 views

Rake task aborted, undefined method 'indexes' for Thinking Sphinx?

I have Sphinx and Thinking Sphinx 2.0.5 installed on my application and when I keep trying to run the command rake ts:index it gives me this error: rake aborted! undefined method `indexes' for ...
5
votes
2answers
2k views

Problem running Thinking Sphinx with Rails 2.3.5

I just installed Sphinx (distro: archlinux) downloading the source. Then I installed "Thinking Sphinx" plugin for Rails. I followed the official page setup and this Screencast from Ryan Bates, but ...
4
votes
3answers
590 views

Any ideas why Thinking Sphinx Rake tasks are not running?

I'm finding that Thinking Sphinx sometimes errors out when I try to run its Rake tasks. Sometimes the tasks work fine, and sometimes I get errors like the one below. I'm running the tasks as a normal ...
4
votes
2answers
572 views

Thinking Sphinx Rake aborted, searchd is running while rebuilding or start/stop ts. Index works fine

When I invoke rake ts:rebuild RAILS_ENV=production, I get the following: (in /var/www/abc.com/public/abc/releases/20101008073517) ** Erubis 2.6.6 Stopped search daemon (pid 22531). Generating ...
4
votes
3answers
756 views

Thinking Sphinx with a date range

I am implementing a full text search API for my rails apps, and so far have been having great success with Thinking Sphinx. I now want to implement a date range search, and keep getting the "bad ...
4
votes
3answers
1k views

Thinking Sphinx and acts_as_taggable_on plugin

I installed Sphinx and Thinking Sphinx for ruby on rails 2.3.2. When I search without conditions search works ok. Now, what I'd like to do is filter by tags, so, as I'm using the acts_as_taggable_on ...
4
votes
1answer
535 views

Rails, Thinking_sphinx, Delta Index

I'm using thinking_sphinx and am delta indexing a model. The delta index works but there is small bug. When I create a new product it is index. However, when I update that product it is not getting ...
4
votes
1answer
552 views

Sphinx returning bad search results

I am using Sphinx with the Thinking Sphinx plugin. I have indexed a model called Venue with the following code (and the rake thinking_sphinx:index command) define_index do indexes :name ...
3
votes
1answer
238 views

ThinkingSphinx Polymorphic relation problem | rails 3.1

I could not create index with thinking_sphinx for the simple polymorphic schema below. (Note: I am able to create index from has_many models but I want to create my indexes from 'belongs_to' model ...
3
votes
2answers
443 views

Thinking sphinx rails not running

Everytime I try to run Sphinx 2.0.1 with Rails 3 on Mac OSX Snow Leopard, I get the following error: Failed to start searchd daemon. Check /Users/.../log/searchd.log. Failed to start searchd daemon. ...
3
votes
4answers
961 views

Does Heroku support Thinking Sphinx?

I would like to know if Heroku supports Sphinx (and its gem Thinking Sphinx)
3
votes
2answers
770 views

Using main and delta indexes in sphinx

Im switching fulltext searching on my site to sphinx. Im going to be using SphinxSE to perform the searches. I created 2 indexes, as specified in the manual: ...
3
votes
3answers
1k views

How do I start Thinking Sphinx delayed delta rake task from deploy script?

I have Thinking Sphinx setup and working however I am having a problem getting the Delayed Job rake tasks to start during deployment. I have the following task in deploy.rb which appears to execute, ...
3
votes
1answer
1k views

Sphinx delta indexing — still necessary to rebuild the main index?

I've been reading up on the Sphinx search engine and the Thinking Sphinx gem. In the TS docs it says... Sphinx has one major limitation when compared to a lot of other search services: you cannot ...
3
votes
4answers
1k views

How do I include the capistrano thinking sphinx tasks when using the gem

Im using the gem for thinking sphinx: sudo gem install freelancing-god-thinking-sphinx \ --source http://gems.github.com So: require 'vendor/plugins/thinking-sphinx/recipes/thinking_sphinx' ...
3
votes
2answers
1k views

Accent Insensitive ordering in Sphinx

I am using Sphinx with the Thinking Sphinx plugin to search my data. I am using MySQL. My data contains accented chars ("á", "é", "ã") and I want them to be equivalent to their non-accented ...
3
votes
4answers
2k views

Thinking Sphinx - Delta indexing doesn't work

In my app, I need every new record to be added to the index instantly (not after rake ts:index). If I understand it correctly delta indexing is what I'm looking for. So, I added delta column to every ...
3
votes
2answers
3k views

Filtering Sphinx search results by date range

I have Widget.title, Widget.publish_ at, and Widget.unpublish_ at. It's a rails app with thinking_sphinx running, indexing once a night. I want to find all Widgets that have 'foo' in the title, and ...
3
votes
2answers
4k views

How do I add the condition “IS NOT NULL” to a Thinking Sphinx search

I'm using Thinking Sphinx for full-text search, following this video. I'd like to do the following: @articles = Article.search(params[:search], :conditions => "published_at IS NOT NULL", :order ...
2
votes
1answer
48 views

Why is my index missing documents with Thinking Sphinx?

I have a simple Thinking Sphinx index defined on my Account model: define_index do indexes display_name indexes email_addresses.email_address has created_at set_property :delta => ...
2
votes
1answer
47 views

ThnkingSphinx (sphinxd) on remote database server with delta indexes?

I'm working on setting up a simple multi-tier Rails 3.1 setup -- web apps on one or more servers, postgresql database and our Sphinx search indexes on a remote server. On a single-server setup ...
2
votes
2answers
58 views

Optimizing / Caching Event Occurrences In Searchable Way

In my Ruby on Rails application I am building a calendar with Fullcalendar JQuery plugin for the views and using the Icecube gem to calculate event recurrence. I also use Thinking Sphinx for search. ...
2
votes
3answers
103 views

Converting a ruby on rails app from sqlite to postgresql

I am going to use thinking sphinx for my application and it requires a conversion to postgresql. I have downloaded both sphinx and postgresql using homebrew, but I am unsure how to convert the rest of ...
2
votes
1answer
136 views

ThinkingSphinx returns no results when in test mode in Cucumber

I'm on a project upgrading from Rails 2 -> 3. We are removing Ultrasphinx (which is not supported in Rails 3) and replacing it with ThinkingSphinx. One problem - the Cucumber tests for searching, ...
2
votes
1answer
210 views

Thinking Sphinx rebuilding index - high CPU load

I have a CRON job rebuilding Sphinx index every 5 minutes: */5 * * * * cd /var/www/my_app && /usr/local/bin/ruby /usr/local/bin/rake RAILS_ENV=production ts:rebuild >> ...
2
votes
1answer
500 views

Thinking Sphinx Faceted Search Implementation Examples?

I am putting together a repository-type rails 3 site. I have Thinking Sphinx installed and working on my site, insomuch as I can enter urls like localhost:3000/articles?search=test&page=2 and it ...
2
votes
1answer
221 views

Using Delta Indexes for associations in Thinking Sphinx

I have a Product model: class Product < ActiveRecord::Base belongs_to :subcategory define_index do # fields indexes subcategory.name, :as => :subcategory, :sortable ...
2
votes
1answer
262 views

uninitialized constant ThinkingSphinx::Deltas::DelayedDelta

I'm attempting to get Thinking Sphinx working w/ Delayed Jobs but I am not having any success. I keep getting the following error: uninitialized constant ThinkingSphinx::Deltas::DelayedDelta I have ...
2
votes
0answers
40 views

Using Thinking Sphinx and staying DRY (Don't Repeat Yourself)

In the large project I'm working on we have many models we want to index and search. I'm finding myself repeating things over and over... and know this could be bad later when we make changes! Is ...
2
votes
2answers
565 views

Rails 3 Search: Searchlogic vs Thinking_Sphinx

In the past, I have used thinking_sphinx with Rails 2.3 and I found no problems with it. Is it worth considering a new search option? What are the differences between searchlogic and thinking_sphinx? ...
2
votes
1answer
220 views

Thinking Sphinx not indexing certain models

This is quite strange. I have 3 models (A, B, C). Were working perfectly when crontab runs it. Recently, I was having problem with indexing new entries for model A. When I invoke rake ts:index ...
2
votes
1answer
347 views

Rails + Thinking-Sphinx polymorphic association

class User < ActiveRecord::Base has_many :followings, :as => :followable, :dependent => :destroy, :class_name => 'Follow' has_many :follows, :as => :follower, :dependent => ...
2
votes
1answer
514 views

Sphinx indexer custom query for sql_attr_multi

I managed to have a query for getting all the friends and friends of friends of a particular user. I have a users table and a friendships join table. For simplicity, lets just say that the users table ...
2
votes
2answers
217 views

Thinking Sphinx without condition on 'id'

According to the documentation on Thinking Sphinx it should be possible to add a filter condition on id, but the following code does not give any results: User.search(:without => {:id => ...
2
votes
1answer
222 views

Thinking Sphinx delta indexing - delta index not getting updated

I have delta indexing setup for thinking sphinx on one of my models. When ever a record gets updated, the delta is being set to True, but I don't see the index getting updated with the changes made to ...
2
votes
1answer
139 views

saving search terms rails thinkingsphinx

I use TS for full text search in my rails app. I am trying to save the search term to present "most searched" type list in my app. Here is my search controller index action. I notice that with the ...
2
votes
1answer
794 views

no such file to load — thinking-sphinx

When running script commands like script/console I get the error message: no such file to load -- thinking-sphinx In my evironment.rb file I have: config.gem 'thinking-sphinx', :version => ...
2
votes
2answers
501 views

Thinking Sphinx indexing succeeding on command line, but failing in Cron job

I admit I've cobbled together a mostly working production setup on Ubuntu with Capistrano from the official docs (which seem dated and make a lot of assumptions) and various blog posts of varying ...
2
votes
2answers
2k views

Rails paginate existing array of ActiveRecord results

I generally use will_paginate for the pagination in my app, but have hit a stumbler on my search feature. I'm using Thinking Sphinx for doing my full-text search, which returns results paginated. The ...
2
votes
6answers
1k views

Thinking Sphinx delta indexing fails in production

Here's what I've determined: Delta indexing works fine in development Delta indexing does not work when I push to the production server, and no action is logged in searchd.log I'm running Phusion ...
2
votes
1answer
410 views

categories dropdown for product search

I am having many products with many categories which are associated with has_many using memberships. I am trying to create a search box where any one can search products while also filter their ...
2
votes
1answer
847 views

Enabling stemming from sphinx.yml in Thinking Sphinx

I created a config/sphinx.yml file with the line: morphology: stem_en After running rake ts:config, it doesn't seem to have changed development.sphinx.conf, and following a rebuild, searching for ...
2
votes
1answer
199 views

How do I stop ThinkingSphinx from querying the database for faceting an MVA field?

I have a index set up so I can facet on category ids, as following: define_index ... has categorizings.category_id, :type => :multi, :facet => true end When I do a query like ...
2
votes
1answer
569 views

Can I identify matched terms when searching with sphinx?

I am using sphinx to do full text search on a mysql database through thinking sphinx. I would like to highlight the matched terms in the results I show to the user. Shpinx is smart enough that ...
1
vote
1answer
24 views

thinking-sphinx: indexing ok, querying gets “No response from searchd” error

I have this error in development env, using thinking-sphinx search in my controller or with console > Product.search "moule" Riddle::ResponseError: No response from searchd (status: , version: ) ...
1
vote
1answer
30 views

Sphinx doesn't show almost all data in production

I use sphinx + thinking_sphinx on my local machine and met really strange problem. I have 2 models - Users and Microposts. Sphinx gets and show users but it can't find Microposts on my Production ...
1
vote
0answers
14 views

Thinking Sphinx: Another index error

While indexing I get this error: indexing index 'qtl_table_core'... ERROR: index 'qtl_table_core': sql_range_query: 'soybase.qtl_table.QTLName' isn't in GROUP BY ...
1
vote
0answers
35 views

Thinking-Sphinx-Raspell configuration

I am using rails 2.3.4 and sphinx 1.4.4 and raspell 1.0.0. Now I would like to add fuzzy match in sphinx search, so I added in my config/environment.rb file I added the following lines: config = ...
1
vote
1answer
52 views

Combining the results of multiple Thinking Sphinx queries into a single paginated result

Is there a simple way to combine the results of multiple Thinking Sphinx searches into a single result? All of these searches are on the same model, but the searches have distinct search terms. What ...
1
vote
1answer
41 views

Thinking Sphinx - reindexing on a per-table basis

Reindexing the Thinking Sphinx indices in my development configuration takes several hours, mostly because of several huge tables (we're not using delta updates). Even when I'm changing the index for ...

1 2 3 4 5 7