Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

第 10 章 Manticore Search

目录

10.1. 安装
10.1.1. Ubuntu
10.1.2. Ubuntu
10.1.3. Docker
10.2. Sphinx

Manticore Search 是一个开源数据库,于 2017 年作为 Sphinx Search 引擎的延续而创建。我们在其优点的基础上,显著提高了其功能,并修复了 数百个错误 ,同时保持开源。这使得 Manticore Search 成为一个现代、快速、轻量级且功能完善的数据库,具有出色的全文搜索能力。

10.1. 安装

10.1.1. Ubuntu

			
wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
sudo dpkg -i manticore-repo.noarch.deb
sudo apt update
sudo apt install manticore manticore-extra			
			
			

启动 Manticore

			
sudo systemctl start manticore			
			
			

10.1.2. Ubuntu

			
sudo dnf install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
sudo dnf install manticore manticore-extra		
			
			

启动 Manticore

			
sudo systemctl start manticore			
			
			

10.1.3. Docker

			
docker run --name manticore -v $(pwd)/data:/var/lib/manticore -p 127.0.0.1:9306:9306 -p 127.0.0.1:9308:9308 -d manticoresearch/manticore