当前位置: 首页 > 软件库 > 程序开发 > 搜索引擎 >

Search::Xapian

授权协议 GPL
开发语言 Perl
所属分类 程序开发、 搜索引擎
软件类型 开源软件
地区 不详
投 递 者 岳炎彬
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

Search::Xapian 是一个 Perl 语言编写的用来访问 C++ 搜索库——Xapian 的客户端。

  • 利用Xapian构建自己的搜索引擎:Xapian简介 Xapian与开源 Xapian的官方网站是http://www.xapian.org,这是一个非常优秀的开源搜索引擎项目,搜索引擎其实只是一个通俗的说法,正式的说法其实是IR(Information Retrieval)系统。Xapian的License是GPL,这意味着允许使用者自由地修改其源码并发布之。Xapian的中文资料非常少,可以说

  • 官方网站:http://xapian.org/ xapian 作为全文搜索引擎,分为三大模块:indexer(索引) databases(数据库管理) searcher(搜索) 包含在以下类: xapian::WriteDatabase xapian::document xapian::database xapian::enquire xapian::query xapian::mset 中文分词

  • Realtime Search: Solr vs Elasticsearch Realtime Search: Solr vs Elasticsearch | Socialcast Engineering Realtime Search: Solr vs Elasticsearch Ryan SonnekRyan Sonnek Tuesday May 31st, 2011 by Ryan Sonn

  • 我目前正在寻找其他搜索方法,而不是拥有一个巨大的SQL查询。 我最近看到了弹性搜索并玩弄了嗖 (搜索引擎的Python实现)。 你能说出你的选择理由吗? #1楼 我的sphinx.conf source post_source { type = mysql sql_host = localhost sql_user = *** sql_pass = ***

  • 在信息检索中,有一类任务叫做Faceting Search,在Wikipedia中的定义如下: Faceted search, also called faceted navigation or faceted browsing, is a technique for accessing a collection of information represented using a faceted

  • Xapian是一款开源的C++信息检索系统,提供了非常强大的功能。 国人喜欢跟风,收到某宴的影响,国人一直推崇Sphinx:与MySQL深度集成,开箱即用,非常傻瓜。但是它定制起来非常的麻烦,就连最基础的中文分词都要改好多地方才能实现。 与市面上其他的信息检索相比,Xapian类似于Lucene,提供丰富、可拓展的编程接口,让Xapian能够更好的融入你的系统中。同时,他的检索性能又远远高于Luc

  • 安装参考 http://www.tcreator.info/webSchool/search-engine/xapian-install.html tar zxvf xapian-core-1.2.15.tar.gz yum install uuid-dev yum install libuuid-devel e2fsprogs-devel ./configure --prefix=/usr/l

  • Realtime Search: Solr vs Elasticsearch | Socialcast Engineering Realtime Search: Solr vs Elasticsearch Ryan SonnekRyan Sonnek Tuesday May 31st, 2011 by Ryan Sonnek 19 comments Tweet What is Elasticsea

  • //利用scws读取本地文件内容,分词生成terms,写入到本地文件 #include<stdio.h> #include<stdlib.h> #include<string.h> #include<scws.h> #define MAXLEN 10240 void read_file(const char *filename ,char *dest ,int maxlen){ FILE *fil

  • 首先,创建一个索引库,代码如下: 搜索的代码: import posixpath base = posixpath.abspath('.') xapian_database_path = posixpath.join(base, u'index') def index(): database = xapian.WritableDatabase(xapian_database_path,

  • 搜索引擎来网上找了一下,流行的有CLucene、sphinx和Xapian等等,听说Clucene的代码质量一般,而Xapian则支持中文全文检索,于是目标指向Xapian。        Xapian的官方网站是www.xapian.org,上去看了一下,最新版本是1.0.12,打开http://www.xapian.org/download,一眼看上去全是*nix下的版本,拉到最下面终于看到了

  • //scw.c #include<stdio.h> #include<stdlib.h> #include<string.h> #include<scws.h> #define MAXLEN 10240 void read_file(const char *filename ,char *dest ,int maxlen){ FILE *file; int pos , temp , i; file

  • Xapian与开源 Xapian的官方网站是http://www.xapian.org,这是一个非常优秀的开源搜索引擎项目,搜索引擎其实只是一个通俗的说法,正式的说法其实是IR(Information Retrieval)系统。Xapian的License是GPL,这意味着允许使用者自由地修改其源码并发布之。Xapian的中文资料非常少,可以说现在互联网上连一篇完整详细的Xapian中文介绍文档,

  • 接着上回的打分系统, 为了把该小程序加入到整个大系统中去,需要大系统提供接口,其实也就是提供http数据以及产生的SQL数据而已,由于数据是分开存放的,HTTP信息存放在一个文件夹中,SQL数据存放在一个文件夹中,并不像小程序那样是简单的放置在一个文件中,所以这样要涉及到搜索技术。 具体的设想如下,用户通过输入一个http请求,并不需要从http文件夹下所有文件中去查找数据,只需要去SQL文件夹下

  • 开源搜索引擎程序有3大类 lucene系,java开发,包括solr和elasticsearch sphinx,c++开发,简单高性能 Xapian,c++开发 搜索引擎程序这个名称不妥当,严格说来应该叫做索引程序(indexing program),早期主要用来做中文全文搜索,但是随着互联网的深入普及,各家网站规模越来越大,索引程序在 优化网站架构上发挥了更大的作用:替代mysql数据库内置的索

  • http://outofmemory.cn/code-snippet/133/use-xapian-gen-mmseg-achieve-zhongwensousuo xapian是一个开源的信息检索项目,类似于lucence。 安装:用apt-get可以在ubuntu里安装如下模块: apt -xapian-index - maintenance tools for a Xapian index

 相关资料
  • 1.接口描述 该API的功能是上传一张图片,返回图片搜索库中与该图片最相似的10张。 如果库中不足10张,则会返回全部图片。 图片要求 格式为 JPG(JPEG),BMP,PNG,GIF,TIFF 宽和高大于 8px,小于等于4000px 小于等于 5 MB 支持自动识别人脸方向 上传的图片中包含有 exif 方向信息,先按此信息旋转、翻转后再做识别人脸方向并调整。 如果照片方向混乱且 exif

  • Search Template 首先查看 Search Template 文档 /_search/template endpoint 允许我们在执行搜索请求和使用模板参数填充现有模板之前,能够使用 mustache 语言预先呈现搜索请求。 将模板参数定义为 Map <String,Object>: Map<String, Object> template_params = new HashMap<

  • Search Insert Position 描述 Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order. You may assume no d

  • Search for a Range 描述 Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O(log n). If the targ

  • Search a 2D Matrix 描述 Write an efficient algorithm that searches for a value in an m × n matrix. This matrix has the following properties: Integers in each row are sorted from left to right. The first

  • search 方法 检索字符串中指定的子字符串或与正则表达式相匹配的子字符串。 语法: stringObject.search( sub_str ); stringObject.search( regexp ); 参数说明: sub_str/regexp - 要检索的子字符串或 RegExp 对象。( 要执行忽略大小写的检索 请追加标志 i ) 返回值: stringObject 中第一