centos - Linux下PHP Sphinx配置问题~
程序员文章站
2024-01-27 17:48:22
...
创建索引
bin/indexer -c etc/sphinx.conf --all
,运行之后,出现如下异常错误:
using config file 'etc/sphinx.conf'...
indexing index 'test1'...
collected 4 docs, 0.0 MB
sorted 0.0 Mhits, 100.0% done
total 4 docs, 193 bytes
total 0.006 sec, 28357 bytes/sec, 587.71 docs/sec
---
indexing index 'test1stemmed'...
ERROR: index 'test1stemmed': infixes and morphology are enabled, enable_star=0
---
skipping non-plain index 'dist1'...
skipping non-plain index 'rt'...
total 3 reads, 0.000 sec, 1.9 kb/call avg, 0.0 msec/call avg
total 9 writes, 0.000 sec, 1.4 kb/call avg, 0.0 msec/call avg
这是sphinx建立索引时出现读问题,我搜索内容也会出现问题,但是内容可以搜索出来~
搜索命令:bin/search -c etc/sphinx.conf test
错误如下:
words:
1. 'test': 3 documents, 5 hits
---
index 'test1stemmed': search error: failed to open /usr/local/sphinx/var/data/test1stemmed.sph: No such file or directory.
---
求高手指点~~
回复内容:
创建索引 bin/indexer -c etc/sphinx.conf --all
,运行之后,出现如下异常错误:
using config file 'etc/sphinx.conf'...
indexing index 'test1'...
collected 4 docs, 0.0 MB
sorted 0.0 Mhits, 100.0% done
total 4 docs, 193 bytes
total 0.006 sec, 28357 bytes/sec, 587.71 docs/sec
---
indexing index 'test1stemmed'...
ERROR: index 'test1stemmed': infixes and morphology are enabled, enable_star=0
---
skipping non-plain index 'dist1'...
skipping non-plain index 'rt'...
total 3 reads, 0.000 sec, 1.9 kb/call avg, 0.0 msec/call avg
total 9 writes, 0.000 sec, 1.4 kb/call avg, 0.0 msec/call avg
这是sphinx建立索引时出现读问题,我搜索内容也会出现问题,但是内容可以搜索出来~
搜索命令:bin/search -c etc/sphinx.conf test
错误如下:
words:
1. 'test': 3 documents, 5 hits
---
index 'test1stemmed': search error: failed to open /usr/local/sphinx/var/data/test1stemmed.sph: No such file or directory.
---
求高手指点~~
在增量索引里面增加
enable_star = 1
比如我的
index deltc : taskquery
{
source = deltc
path = /var/lib/sphinxsearch/data/taskquerydelta
morphology = stem_en
enable_star = 1
}
配置里,索引的path路径用绝对路径,并且确保存在
推荐阅读
-
centos - Linux下PHP Sphinx配置问题~
-
Linux下怎么配置PHP环境?
-
Linux下PHP网站服务器安全配置加固防护方法【推荐】
-
PHP在Linux下连接MSSQLServer的配置方法简述(一、Sybase库)_PHP
-
Linux+php+apache+oracle环境搭建之CentOS下源码编译安装PHP
-
PHP fgetcsv 定义和用法(附windows与linux下兼容问题)_PHP
-
Linux CentOS7系统中php安装配置
-
php判断linux下程序问题实例,php判断linux实例
-
Linux下从零开始安装配置Nginx服务器+PHP开发环境,_PHP教程
-
CentOS 7下关于 PHP GD问题