Tagged Questions
The ultrasphinx tag has no wiki summary.
2
votes
1answer
99 views
Search by record id with ultrasphinx
I'm trying to search by record id with ultrasphinx on Rails 2.3.8
In my model i tried the following:
class Offer < ActiveRecord::Base
is_indexed :fields => [{:field => 'id', :as => ...
1
vote
2answers
356 views
ruby on rails - ultrasphinx
Ruby on Rails - UltraSphinx
Hi guys, I'm using Ultrasphinx for the search thing.
My question is : I have the "rake ultrasphinx:daemon:start" running in the background. Now, should I have a cron job ...
0
votes
1answer
25 views
How can I index and search on the percent (%) character in sphinx
Our index is full of data that have associated units with them.
Units such as degrees (°) and percent (%) are proving difficult to index and search on.
We're using ultrasphinx and sphinx 0.9.9 but ...
0
votes
0answers
56 views
ZeroDivisionError occurred in vendor/plugins/ultrasphinx/lib/ultrasphinx/search/internals.rb
I have installed Sphinx successfully on my system but it giving me "ZeroDivisionError" every I search with right keywords. If i search with wrong keywords which i know will turn no result...it is ...
0
votes
0answers
137 views
ultrasphinx : date before, or date after search?
I'm using ultrasphinx / sphinx to index various fields. Returned results must have a start_date before a particular date, and and end_date after. My index in the model looks like this:
is_indexed ...
0
votes
1answer
135 views
What does the error “ERROR: index ‘product’: raw_hits: write error: 122070 of 262017 bytes written” mean in Sphinx?
Some of my indexes appear to be failing during the nightly rebuild with this error:
ERROR: index ‘product’: raw_hits: write error: 122070 of 262017 bytes written
The only reference I can find on ...
0
votes
1answer
262 views
Is it possible to use Sphinx search with dynamic conditions?
In my web app I need to perform 3 types of searching on items table with the following conditions:
items.is_public = 1 (use title field for indexing) - a lot of results can be retrieved(cardinality ...
0
votes
1answer
178 views
Ultrasphinx and Rails: Completely wrong results - Why?
I'm using Ultrasphinx for searching on a Rails App. Everything seems to be working, the only thing is that the search results are not matching the search query in any way. I really don't understand ...
0
votes
1answer
179 views
Problem with Ultrasphinx & Aspell & Boolean Search (spell check missbehaves…)
I'm using Ultrasphinx with Aspell spelling support to search a Rails app. I want my users to be able to search using boolean operators ("king OR queen"). I'm using the german aspell directory, since ...
0
votes
1answer
517 views
Using Ruby-on-Rails, Sphinx or UltraSphinx and an HTML source (not a database)
The documentation states for sphinx-0.9.9-rc2:
The data to be indexed can generally come from very different sources: SQL
databases, plain text files, HTML files, mailboxes, and so on.
However, I ...