Sphinx 실시간 인덱스
8521 단어 sphinx
index rt
{
type = rt
rt_mem_limit = 512M
path = /usr/local/sphinx/data/rt
rt_field = title
rt_field = content
rt_attr_uint = gid
}
searchd
{
workers = threads
listen = 3312
listen = 3313:mysql41
log = /usr/local/sphinx/var/log/searchd.log
query_log = /usr/local/sphinx/var/log/query.log
read_timeout = 5
client_timeout = 300
max_children = 30
pid_file = /usr/local/sphinx/var/log/searchd.pid
max_matches = 1000
seamless_rotate = 1
preopen_indexes = 1
unlink_old = 1
}
실시간 인덱스는 indexer가 필요하지 않습니다. 검색을 직접 엽니다.
/usr/local/sphinx/bin/searchd -c /usr/local/sphinx/etc/csft_rt.conf
sphinx의 실시간 인덱스 설정 자체는 데이터 원본 (source) 이 필요하지 않으며, 이 데이터는 프로그램을 통해 mysql41 프로토콜을 이용하는 방식입니다.
mysql -h 10.10.3.181 -P 3313
rt 한번 봐주세요.
MySQL [(none)]> desc rt;
+---------+---------+
| Field | Type |
+---------+---------+
| id | integer |
| title | field |
| content | field |
| gid | uint |
+---------+---------+
4 rows in set (0.00 sec)
데이터 삽입
insert into rt (id,title,content,gid) values (1,'111','111','111');
살펴보다
MySQL [(none)]> select * from rt;
+------+------+
| id | gid |
+------+------+
| 1 | 111 |
+------+------+
1 row in set (0.00 sec)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Read the Docs에 공개.js 프레젠테이션을 배포하기 위한 짧은 핵이것은 에 공개.js 슬라이드를 제공하기 위한 소개입니다. 대상 작성기를 재정의하려면 conf.py를 편집하십시오. 내용과 출처를 볼 수 있습니다. 서버 sphinx-revealjs에 대한 일반적인 사용 문제 문서 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.