搜索

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

1.RE: addweight

发布时间:2014-12-04 16:12 t By hightman

你这样搞太麻烦了 宁可在索引时:$doc->addTerm('downLevel', '1', ord($downLevel) - ord('a') + 1); 然后在搜索时 $search->addWeight('downLevel', '1'); 就可以了。

2.RE: 关于addWeight()使用的一些注意(分享&讨论)

发布时间:2011-12-15 13:12 t By hightman

第 2. 点你可以对分类 id 不为 0 的统一在做索引时 $doc->addTerm('cid', 'have') 然后在搜索的时候 $search->addWeight('cid', 'have') 来提权

3.RE: 关于addWeight()使用的一些注意(分享&讨论)

发布时间:2011-12-15 21:12 t By KnightE

[quote='hightman' pid='355' dateline='1323925796'] 第 2. 点你可以对分类 id 不为 0 的统一在做索引时 $doc->addTerm('cid', 'have') 然后在搜索的时候 $search->addWeight('cid', 'have') 来提权 [/quote] 呵呵,是的,避开0就行了

4.Xunsearch SDK for PHP

... = ['WEIGHT', 'subject', 'hello', 0.5]; // 相当于额外调用 XSSearch::addWeight('subject', 'hello', 0.5); $query->where($condition); ``` 对于 `hightman\xunsearch\ActiveQuery` 对象,主要支持以下几个方法获取和操作: - **asArray()**: 以数组形式返回数据 - **one()**: ...

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