英文:
Open source search written in Go
问题
有人知道用Go语言编写的开源搜索项目吗?我想为我的网站实现一个简单的站内搜索功能,正在寻找一个网络爬虫,更具体地说,是用Go语言编写的搜索算法。有什么想法、项目或建议吗?
英文:
Does anyone know of any open source search projects written in Go?
I want to implement a simple site search for my site and am looking for a web crawler, but more specifically, a search algorithm written in Go.
Any ideas, projects, or suggestions?
答案1
得分: 1
你可以尝试使用Go标准库中的suffixarray实现:http://golang.org/pkg/index/suffixarray/
查看godoc可以了解如何使用它。
英文:
You could try the suffixarray implementation in Go's standard library: http://golang.org/pkg/index/suffixarray/
Take a look at godoc how it can be used.
答案2
得分: 1
对于网络爬虫部分,有gocrawl:https://github.com/PuerkitoBio/gocrawl
免责声明:我是作者。
英文:
For the web crawler part, there`s gocrawl: https://github.com/PuerkitoBio/gocrawl
Disclaimer: I'm the author.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论