这是我的conf文件:
source src1
{
type = mysql
sql_host = localhost
sql_user = root
sql_pass = rootpass
sql_db = something
sql_port = 9306
sql_query = \
SELECT id, username, firstname, lastname , gender , email , created_on FROM user
sql_attr_timestamp = created_on
}
index users
{
source = src1
charset_type = sbcs
}
但是当我尝试使用Indexer对其进行索引时,这是我最终得到的输出没有任何索引:
indexer --config /var/www/mysite/sphinx.conf --all
Sphinx 2.0.9-release (rel20-r4115)
Copyright (c) 2001-2013, Andrew Aksyonoff
Copyright (c) 2008-2013, Sphinx Technologies Inc (http://sphinxsearch.com)
using config file '/var/www/mysite/sphinx.conf'...
indexing index 'users'...
ERROR: index 'users': key 'path' not found.
total 0 reads, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg
total 0 writes, 0.000 sec, 0.0 kb/call avg, 0.0 msec/call avg
我做错了什么?
答案 0 :(得分:1)
错误:索引'用户':未找到键'路径'。
您的索引没有path
- 您需要告诉sphinx保存索引的位置!