搜索

大约有 97 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.1955秒)

81.RE: sunsearch如何解决一对多数据结构索引(coreseek的sql_attr_multi属性可以解决这个问题)

更新时间:2013-03-31 13:03 t By hightman

将分辨率数据转换成主表的一个字段,用 XSDocument::addTerm 添加索引或转换成特殊字段采用 split 分词器

82.XSSearch::getRelatedQuery

...$limit + 1)->search($query); foreach ($result as $doc) /* @var $doc XSDocument */ { $doc->setCharset($this->_charset); $body = $doc->body; if (!strcasecmp($body, $query)) { continue; } $ret[] = $body; if (count($...

83.全文检索 tokenizer = full 时,无法查询

发布时间:2013-09-04 16:09 t By hongjh

... 'hello my goodsname', 'goods_sn' => 'RX8899-114' ); $doc = new XSDocument; $doc->setFields($data); $xs->index->add($doc); 3. 查询 3.1 $docs = $xs->search->search('RX8899-114'); ===> 无结果 3.2 $docs = $xs->search->search('RX8899'); ===> 有结果 3.3 $docs = ...

84.index

... XSCommand XSCommand 命令对象 XSComponent XS 组件基类 XSDocument 文档用于描述检索/索引的基础对象, 包含一组字段及其值, 相当于常规SQL数据表中的一行记录. XSErrorException XS 错误异常类定义, XS 所有操作过程发生错误均抛...

85.英文模糊搜索问题

发布时间:2013-07-31 10:07 t By homingway

... !== '') $this->length = $arg; } public function getTokens($value, XSDocument $doc=null){ $charset = is_object($doc) ? $doc->getCharset() : 'UTF-8'; $ret = array(); //如果词的总长度小于给定的长度,则直接返回该词 $strlen = mb_strlen($value,$charset); if($s...

86.为什么我更新的索引会没有数据呢?

更新时间:2012-09-28 10:09 t By zspoplar

...k/php/lib/XS.php'; $xs = new XS('zl'); $index = $xs->index; $doc = new XSDocument; $conn=mysql_connect("localhost", "root", "111111") or die("Could not connect: " . mysql_error()); mysql_select_db('zi, $conn) or die ('Can\'t use test : ' . mysql_error()); $result=mysql_query("select id,titl...

87.RE: xunsearch安装完成后运行示例错误

更新时间:2011-09-14 09:09 t By nick

...L 扩展用于自动加载和对象戏法 | | PCRE 扩展 | OK | XSDocument, XSSearch | 用于字符串切割、判断 | | 编码转换 | iconv | XSDocument, XSSearch | 用于支持非 UTF-8 字符集 | | 缓存模块 | WARNING | XS ...

88.基础对象概述

...索代码中应该尝试捕捉该异常以确定操作是否成功。 * [XSDocument] 文档用于描述检索/索引的基础对象,包含一组字段及其值,相当于常规SQL数据表中的一行记录。 * [XSIndex] 提供索引添加/删除/修改功能,通常以 `XS` 对象的属性方...

89.mysql导入数据配置文件里的字段要和数据库里的一样吗?

发布时间:2011-10-28 10:10 t By mengfanchao

.../usr/local/xunsearch/sdk/php/util/Indexer.php(195): XSIndex->update(Object(XSDocument)) sql语句: sql="select c.contentid,c.status,b.contentid from phpcms_content c,phpcms_c_news b where c.contentid=b.contentid and c.status=99" 配置文件: project.name = html project.default_ch...

90.使用讯搜搭建phpwind的全文检索

更新时间:2012-05-18 09:05 t By myoula

... $thread['tid'] = $tid; $doc = new XSDocument; $doc->setFields($thread); $index->add($doc); } echo '200'; ...

  • 时间不限
  • 按相关性排序