文件名称:goose:golang开发的小型检索系统
文件大小:60KB
文件格式:ZIP
更新时间:2024-03-31 10:16:15
系统开源
#goose goose是使用golang开发检索框架,目标是打造一个简单方便使用的小型检索系统。期望解决百万量级doc数量的检索问题。 goose这个名称的由来:由于是使用golang开发的搜索引擎,一开始想到就是用gose这个单词,但是其没有什么含义,突然发现往中间加多一个字母o,就形成了一个有意义的单词goose ,另外想到很多牛X的项目(或语言)都以动物名字来命名,所以觉得goose这个名字挺好。 ##如何使用? goose是一个检索框架实现,由几个基础模块组成: database负责临时的静态索引,动态索引,ID管理,值管理,数据管理。 config模块简单实现的用于读取配置的模块。 log是日志模块的封装。 utils包含了goose的基础类型定义以及其他一些小工具类。 GooseBuild.go和Indexer.go是主要的建库流程实现。 GooseSearc
【文件预览】:
goose-master
----.gitignore(265B)
----README.md(2KB)
----utils()
--------utils.go(1KB)
--------type.go(3KB)
--------doc.go(443B)
--------jsonfile.go(1KB)
--------mmapfile.go(7KB)
--------sign.go(719B)
--------bigfile.go(10KB)
--------bigfile_test.go(3KB)
--------dociter.go(734B)
----GooseBuild.go(2KB)
----log()
--------log.go(2KB)
--------wrapper.go(2KB)
----database()
--------idmanager.go(4KB)
--------invlist.go(4KB)
--------memoryindex.go(3KB)
--------datamanager.go(6KB)
--------indextransform.go(4KB)
--------varindex.go(5KB)
--------indextransformmanager.go(6KB)
--------dbsearcher.go(4KB)
--------invlist_test.go(2KB)
--------dbbuilder_test.go(1KB)
--------datamanager_test.go(3KB)
--------indextransform_test.go(850B)
--------diskindex.go(13KB)
--------indexmerge.go(2KB)
--------diskindex_test.go(2KB)
--------staticindex.go(643B)
--------database.go(1KB)
--------valuemanager_test.go(2KB)
--------dbbuilder.go(4KB)
--------valuemanager.go(4KB)
--------idmanager_test.go(1KB)
----LICENSE(1KB)
----IStrategy.go(3KB)
----config()
--------toml_kolo.go(1KB)
--------config.go(655B)
--------toml_laurent22.go(1KB)
--------toml_achun.go(960B)
----MergeEngine.go(5KB)
----GooseSearch.go(7KB)
----Goose.go(3KB)
----Searcher.go(2KB)
----Indexer.go(5KB)