Welcome![Sign In][Sign Up]
Location:
Search - Lucene.NET

Search list

[WinSock-NDISdduoftpspider--guiClient0.01

Description: 采用c#编写,asp.net搜索界面,管理界面计划也使用asp.net, 基于.net 2.0,使用vs2005开发, lucene作为索引数据库, 包括syn扫描模块/ftp数据采集模块/web搜索管理模块.-prepared using c #, Asp. Net search interface, the interface management plans to use Asp. Net. Based on. net 2.0, the use of vs2005 development, as lucene index database, including scanning module syn / ftp data acquisition module / web search management module.
Platform: | Size: 106155 | Author: Rain | Hits:

[Search Enginenlucene-1.2b2

Description: NLucene is the .NET implementation of the Lucene high-performance, full-featured text search engine written in Java.
Platform: | Size: 691916 | Author: lwz | Hits:

[WEB Code123456

Description: 一套基于asp.net v2.0的CMS,支持Sql Server 2000及以上版本的数据库;基于栏目、文档的方式组织网站结构;支持栏目级的权限判断,可自定义栏目属性、文档属性;基于lucene的全文搜索,可自定义索引内容;强大的缓存功能,缓存内容以文件的方式存放在硬盘上;集成任务定时器、URL重写; 特点介绍:
Platform: | Size: 2418792 | Author: 唐利敏 | Hits:

[Other resourceIKAnalyzer

Description: IKAnalyzer是中文分词工具,基于lucene2.0版本API开发,实现了以词典分词为基础的正反向全切分算法,是Lucene Analyzer接口的实现,这个是.Net版本,含有源代码
Platform: | Size: 1905346 | Author: Jingtian Jiang | Hits:

[Search Engineruan_Final_fvdou_WEB-fb2_0

Description: lucene 搜索引擎开源 数据库mysql net源码 适合 二次开发-lucene search engine open source database mysql net source for secondary development
Platform: | Size: 5813248 | Author: zm | Hits:

[CSharppangusegment-80115

Description: PanGuSegment 这个是盘古分词的组件包,包括 PanGu.dll 盘古分词的核心组件 DictManage.exe 字典管理工具 Demo.exe 分词演示程序 PanGu.HighLight.dll 高亮组件 PanGu4Lucene 这个是盘古分词针对Lucene.net 提供的接口 PanGu.Lucene.Analyzer.dll 盘古分词针对Lucene.net 的接口组件 PanGu.Lucene.ImportTool.exe 示例程序数据导入程序 -chinese Segment
Platform: | Size: 691200 | Author: asdjkl | Hits:

[CSharpDotLuceneDemo

Description: DotLucene演示源码 DotLucene实际是Lucene的Asp.net版本,也称为lucene.net 该项目的原型为DotLuceneAPISearchDemo-1.1,后经51aspx升级为Asp.net2.0版本并改为WebApplication类型 该demo演示了Lucene的常用功能(智能分词、关键字高亮等) 在测试自定义添加数据后点击建立索引按钮才能生效(此功能由51aspx添加),原版只检索目录下的html文件,51Aspx改为了检索所有文件 1) Indexer文件夹:索引命令源码 其下包括文件目录 - Indexer - lib 2) Searcher文件夹:示例演示目录 - 1.4 文件夹下为相关的英文文档(同时也是索引测试数据源) - index 索引数据存放目录-DotLucene demo source code DotLucene actual Lucene of Asp.net version, also known lucene.net The prototype for the project DotLuceneAPISearchDemo-1.1 upgrade by 51aspx for Asp.net2.0 version and instead WebApplication type The demo demonstrates the common feature of Lucene (the intelligent segmentation, keyword highlighting, etc.) Custom add data, click the index button to take effect (this function is performed by 51aspx add), the original only retrieve the html file in the directory in the test, 51Aspx changed to retrieve all documents 1) Indexer folder: index command source Under which the file directory - Indexer - Lib 2) Searcher folder: example demonstrates directory - 1.4 folder of the English document (as well as the index test data source) - Index index data store directory
Platform: | Size: 743424 | Author: xsj | Hits:

[OtherLucene.net

Description: 用C#实现的分词程序时需要的一个类库包!-C# segmentation procedures need a library packages!
Platform: | Size: 381952 | Author: shanxiaojun | Hits:

[.nettotsearch

Description: 淘特站内搜索引擎(C#版)基于Lucene.Net核心,通过高效的中文分词算法将数据库中内容进行分析、索引并保存至硬盘中。前台搜索时,通过读取索引文件查询,避免了传统数据库查询在高并发及海量数据下的性能问题。因前台搜索不在连接数据库,为不希望数据库放到前台的特殊用户群体提供了数据快速查询解决方案。 -Amoy special stations within the search engine (C# version) is based on Lucene.Net core through efficient Chinese segmentation algorithms to analyze the contents of the database, index and save it to the hard drive. The foreground search query by reading the index file, to avoid the problems of traditional database query performance in high concurrency and mass data. Due to the front desk search is not connected to the database, placed in front of the special user groups do not want the database to provide fast data query solutions.
Platform: | Size: 2267136 | Author: sdgd50898 | Hits:

[OtherSSE

Description: SSE === small search engine implement ----2013.01.17---- 补充第一份说明,这个项目是三四个月前写的基于Lucene.Net的一个小型通用搜索引擎, 稍迟会补上Demo, 当时的目标是一个通用的索引跟检索架构。 索引方面: 每增加一种需要索引的文档类型,都只需要新建一个类,在类的各个字段上标注上索引信息(如是否需要存储,是否需要分词等)然后又数据源提供实体信息给索引器即可自动索引。 检索方面: 检索条件由一棵检索的表达式树组合而成,各种检索条件均可由表达式树组成,也可根据业务需要封装成特定的接口。 索引存储方面: 使用了按时间跟文档数分割的原则,自动按月份生成索引目录,并且限制每个目录下的最大文档数。具体这样做的原因,稍迟会以文档形式补上。-SSE === small search engine implement---- 2013.01.17---- to complement a note, this project is to write three or four months ago the Lucene.Net of a small general-purpose search engines,, slow will complement on Demo, then target a general index with retrieval architecture. Index aspects: every increase in a need to index the document type, only need to create a new class, marked on the index information (such as the need for storage in the various fields of the class, whether word, etc.) and then the data source to provide solid information to indexer can automatically indexes. Retrieval: retrieval condition expression tree retrieved by a combination of a variety of search conditions can be composed by the expression tree, packaged into a particular interface can also be based on business needs. The index storage: index directory according to the principle of split time with the number of documents, automatically generated by month, and limit the maximum number of documents in each di
Platform: | Size: 1437696 | Author: czx | Hits:

[Software EngineeringApache-Lucene.Net-3.0.3-RC2.src

Description: xml读写文档,关于xml的一些读写操作等等的内容,-xml document
Platform: | Size: 5944320 | Author: 小伟 | Hits:

[Browser ClientSearchEngine_Lucene

Description: Lucene.Net,asp.net使用lucene全文搜索-The Lucene.Net ASP.NET use Lucene text search
Platform: | Size: 3520512 | Author: zhong | Hits:

[CSharpCsha-Lucene-Net

Description: C#版本网络爬虫,可以爬去web数据,web crawl desigend by csharp-web crawl desigend by csharp,web crawl desigend by csharp
Platform: | Size: 847872 | Author: song qing | Hits:

[WEB Codetotsearch_v3.3

Description: 淘特站内搜索引擎是由淘特JSP搜索引擎发展而来,系统基于Lucene.Net核心,通过高效的中文分词算法将数据库中内容进行分析、索引并保存至硬盘中。前台搜索时,通过读取索引文件查询,避免了传统数据库查询在高并发及海量数据下的性能问题。因前台搜索不在连接数据库,为不希望数据库放到前台的特殊用户群体提供了数据快速查询解决方案。 淘特站内搜索引擎(C#版)v3.3更新内容: 1、解决生成的文件链接始终是第一个的错误 2、解决GbK编码搜索程序Default_Gbk.aspx下一页链接错误的BUG。 3、优化中文分词算法,提高大数量下文章索引及搜索速度。 4、新增索引视频教程供使用者学习使用。-The search engine is the development of JSP search engine, the system based on the Lucene.Net core, through the efficient Chinese word segmentation algorithm to analyze the contents of the , index and save to the hard disk. In the foreground, the performance of the traditional query is avoided by reading the index file. Because the front desk search is not connected to the , the is not a to provide a solution to the special user groups. Scouring the station search engine (C# version) v3.3 update content: 1, to solve the generated file link is always the first error 2, solve the GbK encoding search program Default_Gbk.aspx next page link error BUG. 3, optimize the Chinese word segmentation algorithm, improve the large number of articles index and search speed. 4, the new index video tutorials for users to learn to use.
Platform: | Size: 2264064 | Author: zzpudn1 | Hits:

[CSharpCreateIndex

Description: Lucene.Net+盘古分词做的定时建索引程序,自己网站用的。-A program which create index Sql server byLucene.Net+pangu.dll
Platform: | Size: 5417984 | Author: | Hits:

[Process-Threadtuzzylikg

Description: lucene,net 大数据搜索 模糊,个人喜欢这个源码,很好-Lucene, net big data search fuzzy, like the source code, very good
Platform: | Size: 174080 | Author: qpeuv | Hits:

[Search EnginePanGu4LuceneV2.1.1.0

Description: Lucene.net是Lucene的.net移植版本,是一个开源的全文检索引擎开发包,它不是一个完整的全文检索引擎,而是一个全文检索引擎的架构,提供了完整的查询引擎和索引引擎。开发人员可以基于Lucene.net实现全文检索的功能。本代码基于lucene.net实现中文全文检索(Chinese fulltext search based on lucene.net)
Platform: | Size: 5517312 | Author: mengmarry | Hits:

[Internet-Networkluce

Description: 为变成人员提供LuceneNet的代码演示和下载(Code demonstration to provide LuceneNet)
Platform: | Size: 3393536 | Author: 韶华forever | Hits:

[.net5

Description: 搜易站内搜索引擎基于Lucene开发的站内搜索解决方案,其集成专为站内搜索设计的细粒度中文分词,有效兼顾搜准和搜全率,无缝支持多种数据库数据汇入索引,支持全站(The search engine in the station is based on Lucene, which is designed for fine grained Chinese participle designed in the station. It takes full account of the search accuracy and search rate, seamlessly supports a variety of database data into the index, and supports the whole station.)
Platform: | Size: 3897344 | Author: 34y5ue | Hits:

[Internet-Network完整的站内搜索引擎(Lucene.Net+盘古分词)

Description: 盘古分词法+全站搜索功能DEMO,仅供参考。(Pangu Word Segmentation + Full Station Search Function DEMO, for reference only)
Platform: | Size: 25544704 | Author: cc_58 | Hits:
« 1 2 3 4 56 »

CodeBus www.codebus.net