搜索

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

11.XSCommand.cmd

cmd 属性 public int $cmd; 命令代码 通常是预定义常量 XS_CMD_xxx, 取值范围 0~255

12.XSFieldMeta.vno

vno 属性 public int $vno; 字段序号 取值为 0~255, 同一字段方案内不能重复, 由 XSFieldScheme::addField 进行确定

13.RE: 全站搜索的搜索建议该如何实现?

发布时间:2012-12-29 17:12 t By hightman

一个项目支持255个字段,你可以考虑合并为一个库。 若实在需要分库,想办法合并结果吧。。。

14.RE: 全站搜索的搜索建议该如何实现?

更新时间:2012-12-29 17:12 t By hightman

一个项目支持255个字段,你可以考虑合并为同一套字段方案,只要一个INI。 若实在需要分库,想办法合并结果吧。。。

15.XSTokenizerXlen::__construct

... $this->arg = intval($arg); if ($this->arg < 1 || $this->arg > 255) { throw new XSException('Invalid argument for ' . __CLASS__ . ': ' . $arg); } }}

16.XSTokenizerXstep::__construct

... $this->arg = intval($arg); if ($this->arg < 1 || $this->arg > 255) { throw new XSException('Invalid argument for ' . __CLASS__ . ': ' . $arg); } }}

17.XSServer::setProject

... string 项目在服务器上的目录路径, 可选参数(不得超过255字节). 源码: sdk/php/lib/XSServer.class.php#L251 (显示) public function setProject($name, $home = ''){ if ($name !== $this->_project) { $cmd = array('cmd' => XS_CMD_USE, 'buf' => $name, 'buf1' => $home...

18.XSSearch::setSynonymScale

... = XS_CMD_SEARCH_MISC_SYN_SCALE; $arg2 = max(0, (intval($value * 100) & 255)); $cmd = new XSCommand(XS_CMD_SEARCH_SET_MISC, $arg1, $arg2); $this->execCommand($cmd); return $this;} 设置同义词搜索的权重比例

19.XSDocument::addTerm

...ng 词条所属字段名称 $term string 词条内容, 不超过 255字节 $weight int 词重, 默认为 1 源码: sdk/php/lib/XSDocument.class.php#L236 (显示) public function addTerm($field, $term, $weight = 1){ $field = strval($field); if (!is_array($this->_terms)) {...

20.XSSearch::setCutOff

..., min(100, intval($percent))); $weight = max(0, (intval($weight * 10) & 255)); $cmd = new XSCommand(XS_CMD_SEARCH_SET_CUTOFF, $percent, $weight); $this->execCommand($cmd); return $this;} 设置百分比/权重剔除参数 通常是在开启 setFuzzy 或使用 OR 连接搜索语句时...

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