2013-07-07 73 views
0

嗨只是我的CentOS VPS安裝獅身人面像。但出於某種原因,每當我搜索,這讓我沒有結果。我正在使用SSH進行搜索。這裏是命令獅身人面像搜索使零結果

search --index sphinx_index_cc_post -a Introducing The New Solar Train Tunnel 

這是命令的輸出

Sphinx 2.0.5-release (r3308) 
Copyright (c) 2001-2012, Andrew Aksyonoff 
Copyright (c) 2008-2012, Sphinx Technologies Inc (http://sphinxsearch.com) 

using config file '/usr/local/etc/sphinx.conf'... 
index 'sphinx_index_cc_post': query 'Introducing The New Solar Train Tunnel ': returned 0 matches of 0 total in 0.000 sec 

words: 
1. 'introducing': 0 documents, 0 hits 
2. 'the': 0 documents, 0 hits 
3. 'new': 0 documents, 0 hits 
4. 'solar': 0 documents, 0 hits 
5. 'train': 0 documents, 0 hits 
6. 'tunnel': 0 documents, 0 hits 

這是我在配置文件索引

source sphinx_index_cc_post 
{ 

    type         = mysql 
    sql_host        = localhost 
    sql_user        = user 
    sql_pass        = password 
    sql_db         = database 
    sql_port        = 3306 

    sql_query_range     = SELECT MIN(postid),MAX(postid) FROM cc_post 
    sql_range_step     = 1000 

    sql_query        = SELECT postedby, category, totalvotes, trendvalue, featured, isactive, postingdate \ 
              FROM cc_post \ 
              WHERE postid BETWEEN $start AND $end 
} 

index sphinx_index_cc_post 
{ 
    source     = sphinx_index_cc_post 
    path     = /usr/local/sphinx/data/sphinx_index_cc_post 
    charset_type   = utf-8 
    min_word_len = 2 
} 

該指數似乎ŧ o工作正常,當我旋轉索引時,我成功獲取文檔。這裏是我的索引器的結果

[[email protected] data]# indexer --rotate sphinx_index_cc_post 
Sphinx 2.0.5-release (r3308) 
Copyright (c) 2001-2012, Andrew Aksyonoff 
Copyright (c) 2008-2012, Sphinx Technologies Inc (http://sphinxsearch.com) 

using config file '/usr/local/etc/sphinx.conf'... 
indexing index 'sphinx_index_cc_post'... 
WARNING: Attribute count is 0: switching to none docinfo 
WARNING: source sphinx_index_cc_post: skipped 1 document(s) with zero/NULL ids 
collected 2551 docs, 0.1 MB 
sorted 0.0 Mhits, 100.0% done 
total 2551 docs, 61900 bytes 
total 0.041 sec, 1474933 bytes/sec, 60784.40 docs/sec 
total 2 reads, 0.000 sec, 1.3 kb/call avg, 0.0 msec/call avg 
total 6 writes, 0.000 sec, 1.0 kb/call avg, 0.0 msec/call avg 
rotating indices: succesfully sent SIGHUP to searchd (pid=17888). 

我也嘗試刪除屬性,但沒有運氣!我猜無論是它的查詢問題的一些配置問題

回答

1

您所查詢的是:

SELECT postedby, category, totalvotes, trendvalue, featured, isactive, postingdate \ 
              FROM cc_post 

從列名,我猜你沒有任何這些列的全文。你是否錯過了包含文本的列?