Sphinx is a free software search engine for indexing database content. NOTE: For the Python documentation tool, use the [python-sphinx] tag.

learn more… | top users | synonyms

0
votes
4answers
29 views

Include inside function considered bad practice?

I am wondering if it is considered bad practice to include() a library file inside a function? Part of my website uses the Sphinx search engine, but it seems inefficient to add sphinxapi.php to every ...
1
vote
1answer
10 views

how to index a many to many relation by sphinx

I have a question about index a many to many relation. e.g: table A : id,value_a(string) table B : id,value_b(string) table C: id_a,id.b,value_c(string) the query is : select * from C where C.id_a ...
0
votes
0answers
13 views

Intersect/merge results from several Sphinx indices

Good day, I wonder if it is possible to implement the following. For example, we have 2 indices: 1: Id, A, B, C, f1, f2. 2: Id, f3. where: fn - rt_field. A, B, C - attributes to return. Ids in the ...
0
votes
2answers
13 views

SphinxQl add comments - How to write in log files

I have fetching records from SphinxQl . Here i have to be find out howmany sphinxQL querys coming to server. As the same i have to be know any options is there to add comments in sphinxQl query. ...
0
votes
1answer
28 views

Thinking-Sphinx & Rails - Content not indexed anymore

I have a Rails application that indexes classifeds ads. I'm using thinking-sphinx. Yesterday, I realized that my ads are not getting indexed anymore. I'm a beginner in Rails so I don't know exactly ...
0
votes
1answer
31 views

How to perform sphinx Multi-queries with Thinking Sphinx

My main aim is to perform Multiple Sphinx queries at once. They can be on different models/tables or some commons ones. The final result should be grouped query-wise. This seems to be supported in ...
2
votes
1answer
43 views

How can I relate search indexes to models in MVC?

I have an MVC application which I need to be able to search. The application is modular so it needs to be easy for modules to register data to index with the search module. At present, there's just a ...
0
votes
1answer
13 views

Sphinx create attribute for mysql primary key auto increment id

I am trying to create sphinx index for same copy for my mysql table but there i got a error for my auto increment id. So i can't create a same field name of auto increment id. Error: WARNING: ...
0
votes
0answers
9 views

failed to lock /sphinx-2.0.6/var/data/jsearch.tmp.spl

The following error is coming when i m trying to index ================================================================================= Sphinx 2.0.6-release (r3473) Copyright (c) 2001-2012, Andrew ...
0
votes
1answer
16 views

Sphinx search with whitespace

I have a sphinx index working well in English, French and German (hence the long charset_table). My current index is only hit if there is a sphinx term of 3 or more chars. This works fine for single ...
0
votes
1answer
16 views

Thinking sphinx 3 and sphinx 2.1.1-beta not start

I install Thinking sphinx 3 on Rails 3 app and new sphinx 2.1.1-beta, before this i have Thinking sphinx 2 and sphinx 2.1.1-beta, and they work fine with add port: 3312 in sphinx.yml But now when i ...
0
votes
2answers
38 views

In sphinx how does the search result display if the index updates inbetween two setlimit calls

I have just started working on sphinx with php. Was just wondering is if i set limit to 20 records per call. $cl->SetLimits ( 0, 20); the index recreate is say set to 5 minutes with a --rotate ...
0
votes
0answers
27 views

Weird behaviour matching exact phrases with sphinx

I am using the sphinx search engine. I need it to search for exact words in a field. Generally it works fine, but there are some weird anomalies. $this->sphinxclient->Query('@title "Alfa Romeo ...
0
votes
0answers
14 views

Sphinx killlist query

I don't know why killlist is not working properly ? My sphinx.conf looks like that: source main { type = mysql sql_host = localhost sql_user = root sql_pass ...
0
votes
1answer
35 views

Improving the performance of Jquery Autocomplete with Sphinx / Memcache…or?

I have a list of 43,000 UK locations in an InnoDB table that I am using to populate a Jquery autocomplete box via remote json calls. At present I'm just performing a basic SELECT * FROM locations ...
0
votes
1answer
17 views

Sphinx search: Use OR option with attributes and text

I need to get results from multiples queries with sphinx. There's no problem when there are only attribute conditions. For example: $this->cl->SetSelect ( "*, item_fkprogram=700 OR ...
0
votes
0answers
18 views

Sphinx using UNION for extra results with setFilter

I am improving features on existing site and one of the current features is to be able to filter results(companies) returned from Sphinx by company.city_id. Now this feature needs to be improved so ...
0
votes
1answer
27 views

Sphinx runs queries on DB even when turned off

I've istalled sphinx on my server to try it out. I've set up a simple search source, run indexer once and it worked well. Then I've stopped sphinx process and it is not running for a few weeks now: ...
0
votes
2answers
30 views

Spinx geodistance with PHP returns no results

I'm new to Sphinx search. I read the manual and a few how-tos on how to get Geodist working and am getting no results. I've scoured the internet and StackOverflow for solutions and tried everything ...
0
votes
2answers
43 views

retrieve values from multi dimensional array Sphinx PHP API

Im building search engine with sphinx, but I've stuck at the end with displaying results as my PHP knowledge is limited. The request to search server gives me this multi dimensional array: Array ( ...
0
votes
1answer
35 views

Using crc32 tweak on has_many relations in Thinking Sphinx

It's weird actually. I have two models that have has_many relation each other, here are my models #model city class City < ActiveRecord::Base belong_to :state end #model state class State < ...
0
votes
1answer
37 views

Thinking sphinx with rails - order by association column

Is there an ability to order search results by association column in thinking sphinx? I have index defined as follows: ThinkingSphinx::Index.define :demand, :with => :active_record, :delta => ...
1
vote
1answer
40 views

Better Thinking Sphinx Results

I have recently started playing around with the thinking sphinx gem and have been having great success with running searches, however I have noticed that for some reason, certain searches aren't ...
0
votes
0answers
26 views

Cant run Sphinx search service on windows

I tried installing Sphinx as a service on windows, and followed the steps mentioned in the following tutorial: http://sphinxsearch.com/forum/view.html?id=2972 But the service doesn't start and gives ...
1
vote
1answer
69 views

Thinking Sphinx search returns (Object doesn't support #inspect)

I have sphinx and thinking sphinx (3.0.2) installed on mountain lion for my rails 3 app and everything seems to be running fine during the installation. My eventual plan is to work with the geodist ...
0
votes
1answer
62 views

SphinxSearch - setFilter working with sql_attr_multi

It is possible to set a filter/condition in the sphinx api to add an 'AND' condition to the config select? (or to act like an 'AND' condition) ? SetFilter doesnt work as I expected, because I'm using ...
1
vote
1answer
54 views

undefined method for nil:NilClass when render Thinking Sphinx Collection with Association

Actually, this is a dumb question, but i'm very confused. I have a web application with thinking sphinx running on that, these are my models models/college class College < ActiveRecord::Base ...
0
votes
1answer
10 views

Virtual accessor for Thinking Sphinx

Can I set a virtual accessor in model and set this accessor as field or attribute in Thinking Sphinx? I'm trying like this but getting error "undefined method `type' for nil:NilClass " index model: ...
0
votes
1answer
33 views

Rails : what rails fuzzy method/gem/plugin use to search in a 1 million records database table?

I own a ~1 million records mysql table. I will need soon to add search in my Rails 3.x app. I want the search to be fuzzy. Actually, I use a plugin (rails-fuzzy-search) for another table but it's ...
0
votes
1answer
15 views

Getting min and max values from Thinking Sphinx search

How can I get min and max values from Thinking Sphinx search by column Price? indexes :price indexes :name, :sortable => true
0
votes
1answer
32 views

ThinkingSphinx3: How to prevent searchd threads from freezing?

I am using Rails 3.2.12, RSpec-rails 2.13.0 and ThinkingSphinx 3.0.10 The problem: When I run bundle exec rpsec spec/controllers/ads_controller_spec.rb, thinking sphinx spawns 3 searchd processes ...
0
votes
1answer
34 views

Conditions for some indexes of the Thinking Sphinx

How use conditions for some Thinking Sphinx indexes? For some reasons I needed a condition like this: ... has values(:id), **where(this_value.type_id => 1)** has values(:id), ...
0
votes
1answer
81 views

Ruby filter binary data

I working on search in ms words files using sphinx xmlpipe and rake task for geting formated xml for him. That when i get problems. Basicly what i do is detect file type with MIME::Types.type_for and ...
0
votes
1answer
28 views

SPHINX enable_star not working

I wish to search for substrings using the results that sphinx returned. Is my setting ok? Do I need to restart the searchd process? index dev_jobs { source = dev_jobs_src path = ...
0
votes
1answer
25 views

ThinkingSphinx3: Just upgraded from TS2 & getting odd sort_by error message

I have the following attribute in my Ad model: has sort_by_date, :as => :timestamp, :sortable => true In the ads table there is a sort_by_date field, which is a datetime field. However when ...
0
votes
1answer
17 views

Per field ranking in Sphinx

I have a Sphinx index with three indexed fields. I would like to rank higher those documents with matches on field one over those on field two and then again those over field three, so that for ...
0
votes
0answers
39 views

How to get sphinx to install with mysql support using hombrew

I am attempting to get sphinx installed on my Mac OS X (10.8.3) laptop so that I can do some full text searching on a rails app using thinking sphinx. The commands I have used for installing sphinx ...
1
vote
1answer
41 views

Thinking Sphinx name of facets

I have define facets for product model like this: product_index.erb ThinkingSphinx::Index.define :product, :with => :active_record do indexes publish indexes name, :sortable => true ...
-2
votes
1answer
31 views

Sphinx version for file indexing

I working on full text search on ms ofice files, i am using postgresql and sphinx for indexation, but on our production server installed sphinx version 0.99. I can not decide if i need to update it to ...
1
vote
1answer
65 views

Sphinx morphology stem_en not working

I have a single-field Sphinx index with stemming set up as follows: index main_sphinxalert { # Options: type = rt path = ...
0
votes
1answer
22 views

Sphinx reverse search - when new item is added, execute searches on existing stored keywords

I have an app where people can list stuff to sell/swap/give away, with 200-character descriptions. Let's call them sellers. Other users can search for things - let's call them buyers. I have a ...
0
votes
1answer
32 views

How to search within Sphinx results using partial words?

I have a form and when I enter a value, I want to get the results on submit; If I search for fish and I have a fishing value I want to get all the data that contain the fish value; In my code, I get ...
0
votes
0answers
8 views

thinking_sphinx 3.0.0 with thinking_sphinx_raspell

Im trying to configure thinking_sphinx 3.0.0 with thinking-sphinx-raspell 1.3. But when Im making search in collection and invoke "suggestion?" method, this error occures - NoMethodError: undefined ...
-1
votes
1answer
128 views

Open source web crawler that can index billions document [closed]

Is there an open source web crawler that can perform document index billions of documents? mnoGoSearch, dataparksearch, sphinx index currently able to perform up to hundreds of millions of documents ...
0
votes
1answer
34 views

Delta Indexing by timestamp in Sphinx

I am attempting to setup a main+delta index scheme using a timestamp field instead of a max_doc_id as in the example in the docs. source main { sql_query_pre = \ REPLACE INTO sph_counter ...
1
vote
0answers
99 views

Lost connection to MySQL server at 'reading initial communication packet' - Thinking sphinx with remote sphinx server

I tried to use thinking sphinx (3.0.2) with remote sphinx server. whenever search query is called like Model.search, I am getting the error: Mysql2::Error: Lost connection to MySQL server at ...
0
votes
1answer
23 views

Merge realtime index and disk index

I'm new to sphinx ( and full text searching in general ). I've read that main+delta schemes are good for when you've got a large amount of data that doesn't change over time and some new data that is ...
0
votes
1answer
22 views

Connect Sphinx server using SphinxQl with password

Normally we have connect sphinx server using API sobj->("ip","port", "SphinxAttribute",5000); In sphinxQL : Any option is there to connect sphinx server using username and password. LIKE ...
0
votes
2answers
78 views

sphinx search installed under root, how can i change owner?

i followed this tutorial: http://www.andrehonsberg.com/article/install-sphinxsearch-205-in-ubuntu-1204-server and installed sphinx on ubuntu 12 on ec2, the problem is that my rails app is ...
1
vote
1answer
39 views

Sphinx custom sorting (FIELD)

I, have table: id | geo_id | values .... 1 1 wvrevev 2 2 wvrevev 3 3 wvrevev 3 4 wvrevev 7 5 wvrevev 8 6 wvrevev 9 8 wvrevev In ...

1 2 3 4 5 25