收藏 分享(赏)

基于Nutch+Lucene搜索引擎的搭建--搜索引擎技术的相关设计与分析.doc

上传人:wo7103235 文档编号:393845 上传时间:2019-06-07 格式:DOC 页数:44 大小:812KB
下载 相关 举报
基于Nutch+Lucene搜索引擎的搭建--搜索引擎技术的相关设计与分析.doc_第1页
第1页 / 共44页
基于Nutch+Lucene搜索引擎的搭建--搜索引擎技术的相关设计与分析.doc_第2页
第2页 / 共44页
基于Nutch+Lucene搜索引擎的搭建--搜索引擎技术的相关设计与分析.doc_第3页
第3页 / 共44页
基于Nutch+Lucene搜索引擎的搭建--搜索引擎技术的相关设计与分析.doc_第4页
第4页 / 共44页
基于Nutch+Lucene搜索引擎的搭建--搜索引擎技术的相关设计与分析.doc_第5页
第5页 / 共44页
点击查看更多>>
资源描述

1、 本科毕业论文(科研训练、毕业设计)题 目:基于 Nutch+Lucene 搜索引擎的搭建-搜索引擎技术的相关设计与分析姓 名:学 院:软件学院系:软件工程专 业:软件工程年 级: 学 号: 指导教师: 职称: 年 月I基于 Nutch+Lucene 搜索引擎的搭建-搜索引擎技术的相关设计与分析摘要 电子邮件和搜索引擎长期以来一直是两项最受欢迎、最热门的互联网业务,特别是近年来,搜索引擎已发展到了一个鼎盛时期,继 Yahoo 之后,Google 又以其搜索引擎的技术创新、专业风格创造了新的奇迹,在国内,百度也在很短时间里凭借搜索引擎取得很大成功。因此搜索引擎作为互联网行业的一个重大部分,对它的

2、研究和建设对社会具有非常重要的意义。因此,本文在研究 Web 搜索引擎的基本原理、核心技术和处理流程的基础上,然后以开源代码 Nutch 和 Lucene 为例,通过研读代码以及查找相关资料,并通过 Ajax 技术搭建了一个基本的搜索引擎系统。不仅完成了整个搜索引擎的框架设计,而且基本上完成了开发工作。本文介绍了课题的研究背景和国内外搜索引擎的发展现状,并论述了搜索引擎的一些相关技术和工作原理,最后详细说明了搜索引擎系统的开发过程和方法。关键词 搜索引擎 Nutch Lucene AjaxIIAbstract E-mail and search engine has long been the

3、 two most popular Internet business, especially in recent years, search engines have been developed to a peak period, following Yahoo, Google and its search engine technology innovation, professional style create a new miracle. In China,Baidu is also by virtue of a search engine receive a great achi

4、evement in very short period of time. So the Internet search engine as part of a major industry, its research and construction has very important significance for community. Therefore, this thesis on the basis of researching Web search engines, principles of core technologies and processes, then thr

5、ough Nutch open source code and Lucene as an example, read the code and find relevant information, finaly built a basic Search engine system by technology of Ajax. Not only to complete the whole framework of the search engine design, and also basically complete the development work. The article intr

6、oduces the background of this topic and the development of domestic and international search engines, and discusses some relevant technology and principle of the search engine, at last explain the details of the processs and method of search engines system.Keywords Search engine Nutch Lucene AjaxIII

7、目录第一章 绪论 -11.1 课题研究背景 -11.1.1 搜索引擎以及 Nutch 的由来 -11.1.2 国内外搜索引擎的现状 -11.1.3 搜索引擎的未来发展 -21.2 搜索引擎的工作原理 -21.2.1 搜索引擎的组成 -21.2.2 搜索引擎的分类 -3第二章 Nutch 和 Lucene 相关技术及研究 -42.1 Nutch 简介 -42.1.1 Nutch 定义 -42.1.2 Nutch 的体系结构 -42.1.3 Nutch 的工作原理 -62.2 Lucene -72.2.1 概述 -72.2.2 Lucene 的系统结构 -82.2.3 Lucene 的文件结构 -

8、82.3 MapReduce -92.4 WebDB -10第三章 系统的概要设计 -113.1 系统的总体架构 -113.2 索引模块 -123.2.1 索引的建立 -123.2.2 索引的框架 -133.3 Ajax 界面设计模块 -143.3.1 Ajax 技术简介 -143.3.2 界面架构 -15第四章 系统的设计与实现 -174.1 设计平台及工具 -174.2 系统的详细设计 -174.2.1 索引部分的设计 -174.2.2 搜索结果显示的实现 -194.3 Ajax 界面部分的实现 -214.3.1 客户端代码设计 -214.3.2 服务器端代码设计 -25第五章 系统实现功

9、能和分析 -265.1 系统的运行结果以及分析 -265.2 自动完成的运行结果以及分析 -315.3 总的运行界面 -31IV结论 -33致谢 -34参考文献: -35VContentChapter 1 Introduction-11.1 Background of topic -11.1.1 Origin of search and nutch-11.1.2 Development of domestic and international search engines-11.1.3 The future of search engine-21.2 Principle of work of

10、 search engine -21.2.1 Elements of search engine-21.2.2 Sorts of search engine-3Chapter 2 Relevant technology and research of Nutch and Lucene-42.1 Nutch briefly introduce -42.1.1 Nutch defining-42.1.2 Architecture of Nutch-42.1.3 Principle of Nutch-62.2 Lucene -72.2.1 Summarize-72.2.2 Architecture

11、of Lucene-82.2.3 File architecture of Lucene-82.3 MapReduce -92.4 WebDB -10Chapter 3 General design of system-113.1 The whole architecture of system -113.2 Index module -123.2.1 Foundation of index-123.2.2 Framework of index-133.3 Design module of Ajax interface -143.3.1 Brief introduce of Ajax-143.

12、3.2 Framework of interface-15Chapter 4 Design and implement of system-174.1 Design platform and tools -174.2 The detailed design -174.2.1 Design of index-174.2.2 Implement of search-194.3 Implement of Ajax -214.3.1 Design code on cilent-214.3.2 Design code on server-25Chapter 5 The implement and analysis of systematic function-265.1 The results and analysis of system -265.2 The results and analysis of autocomplete -315.3 The whole running interface -31VIConclusion-33Thanks-34References-

展开阅读全文
相关资源
相关搜索
资源标签

当前位置:首页 > 应用文书 > 毕业论文

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:文库网官方知乎号:文库网

经营许可证编号: 粤ICP备2021046453号世界地图

文库网官网©版权所有2025营业执照举报