网络搜索引擎对于索引大量在线信息至关重要,可以在几毫秒内访问这些信息。在这个项目中,我用 Go (Golang) 构建了一个名为 RelaxSearch 的搜索引擎。它通过与强大的搜索和分析引擎 Elasticsearch 集成,将网络抓取、定期数据索引和搜索功能结合在一起。在这篇博客中,我将带您了解 RelaxSearch 的主要组件、架构,以及它如何有效地抓取和索引数据,以实现基于关键字的快速搜索。
RelaxSearch 围绕两个主要模块构建:
从头开始创建搜索引擎项目是了解网络抓取、数据索引和高效搜索技术的好方法。我想利用 Go 的效率和 Elasticsearch 强大的索引创建一个简单但实用的搜索引擎,具有快速数据检索和易于扩展的特点。
RelaxEngine 是一个用 Go 编写的网络抓取工具,用于导航网页、提取和存储内容。它作为 cron 作业运行,因此可以定期(例如每 30 分钟)运行一次,以保持索引更新为最新的 Web 数据。其工作原理如下:
RelaxWeb 提供 RESTful API 端点,可以轻松查询和检索 Elasticsearch 中存储的数据。 API 接受关键字、分页、日期过滤等多个参数,以 JSON 格式返回相关内容。
下面是一些来自 RelaxSearch 的重要组件和代码摘录,以说明其工作原理。
核心功能位于 main.go 文件中,其中 RelaxEngine 使用 gocron 初始化调度程序来管理 cron 作业,设置 Elasticsearch 客户端,并开始从种子 URL 进行爬取。
func main() { cfg := config.LoadConfig() esClient := crawler.NewElasticsearchClient(cfg.ElasticsearchURL) c := crawler.NewCrawler(cfg.DepthLimit, 5) seedURL := "https://example.com/" // Replace with starting URL s := gocron.NewScheduler(time.UTC) s.Every(30).Minutes().Do(func() { go c.StartCrawling(seedURL, 0, esClient) }) s.StartBlocking() }
crawler.go 文件处理网页请求、提取内容并为其建立索引。使用elastic包,每个抓取的页面都存储在Elasticsearch中。
func (c *Crawler) StartCrawling(pageURL string, depth int, esClient *elastic.Client) { if depth > c.DepthLimit || c.isVisited(pageURL) { return } c.markVisited(pageURL) links, title, content, description, err := c.fetchAndParsePage(pageURL) if err == nil { pageData := PageData{URL: pageURL, Title: title, Content: content, Description: description} IndexPageData(esClient, pageData) } for _, link := range links { c.StartCrawling(link, depth+1, esClient) } }
在relaxweb服务中,API端点提供全文搜索功能。端点 /search 接收请求并查询 Elasticsearch,根据关键字返回相关内容。
func searchHandler(w http.ResponseWriter, r *http.Request) { keyword := r.URL.Query().Get("keyword") results := queryElasticsearch(keyword) json.NewEncoder(w).Encode(results) }
git clone https://github.com/Ravikisha/RelaxSearch.git cd RelaxSearch
配置
使用 Elasticsearch 凭证更新 RelaxEngine 和 RelaxWeb 的 .env 文件。
使用 Docker 运行
RelaxSearch 使用 Docker 来轻松设置。只需运行:
docker-compose up --build
RelaxSearch 是基本搜索引擎的教育和实践演示。虽然它仍然是一个原型,但该项目对于理解 Web 抓取、全文搜索以及使用 Go 和 Elasticsearch 进行高效数据索引的基础知识很有帮助。它为可扩展环境中的改进和实际应用开辟了途径。
探索 GitHub 存储库,亲自尝试 RelaxSearch!
以上是使用 Elasticsearch 在 Go 中构建 Web 搜索引擎的详细内容。更多信息请关注PHP中文网其他相关文章!