Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huichen/wukong
高度可定制的全文搜索引擎
https://github.com/huichen/wukong
Last synced: 10 days ago
JSON representation
高度可定制的全文搜索引擎
- Host: GitHub
- URL: https://github.com/huichen/wukong
- Owner: huichen
- License: other
- Created: 2013-08-09T06:45:11.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2021-08-24T07:42:50.000Z (about 3 years ago)
- Last Synced: 2024-07-31T17:17:59.724Z (3 months ago)
- Language: Go
- Homepage:
- Size: 25 MB
- Stars: 4,477
- Watchers: 325
- Forks: 871
- Open Issues: 38
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
- my-awesome - huichen/wukong - 08 star:4.5k fork:0.9k 高度可定制的全文搜索引擎 (Go)
- awesome - huichen/wukong - 高度可定制的全文搜索引擎 (Go)
- go-awesome - wukong - full-text search engine (Open source library / Search Recommendations)
- awesome-hacking-lists - huichen/wukong - 高度可定制的全文搜索引擎 (Go)
README
悟空全文搜索引擎
======* [高效索引和搜索](/docs/benchmarking.md)(1M条微博500M数据28秒索引完,1.65毫秒搜索响应时间,19K搜索QPS)
* 支持中文分词(使用[sego分词包](https://github.com/huichen/sego)并发分词,速度27MB/秒)
* 支持计算关键词在文本中的[紧邻距离](/docs/token_proximity.md)(token proximity)
* 支持计算[BM25相关度](/docs/bm25.md)
* 支持[自定义评分字段和评分规则](/docs/custom_scoring_criteria.md)
* 支持[在线添加、删除索引](/docs/realtime_indexing.md)
* 支持[持久存储](/docs/persistent_storage.md)
* 可实现[分布式索引和搜索](/docs/distributed_indexing_and_search.md)
* 采用对商业应用友好的[Apache License v2](/license.txt)发布[微博搜索demo](http://vhaa7.fmt.tifan.net:8080/)
# 安装/更新
```
go get -u -v github.com/huichen/wukong
```需要Go版本至少1.1.1
# 使用
先看一个例子(来自[examples/simplest_example.go](/examples/simplest_example.go))
```go
package mainimport (
"github.com/huichen/wukong/engine"
"github.com/huichen/wukong/types"
"log"
)var (
// searcher是协程安全的
searcher = engine.Engine{}
)func main() {
// 初始化
searcher.Init(types.EngineInitOptions{
SegmenterDictionaries: "github.com/huichen/wukong/data/dictionary.txt"})
defer searcher.Close()// 将文档加入索引,docId 从1开始
searcher.IndexDocument(1, types.DocumentIndexData{Content: "此次百度收购将成中国互联网最大并购"}, false)
searcher.IndexDocument(2, types.DocumentIndexData{Content: "百度宣布拟全资收购91无线业务"}, false)
searcher.IndexDocument(3, types.DocumentIndexData{Content: "百度是中国最大的搜索引擎"}, false)// 等待索引刷新完毕
searcher.FlushIndex()// 搜索输出格式见types.SearchResponse结构体
log.Print(searcher.Search(types.SearchRequest{Text:"百度中国"}))
}
```是不是很简单!
然后看看一个[入门教程](/docs/codelab.md),教你用不到200行Go代码实现一个微博搜索网站。
# 其它
* [为什么要有悟空引擎](/docs/why_wukong.md)
* [联系方式](/docs/feedback.md)