根据http://www.xunsearch.com/doc/php/guide/start.demo 的内容测试,反馈如下的信息。 --------------------------------------------------------------- # sdk/php/util/Quest.php demo DEMO 在 3 条数据中,大约有 0 条包含 DEMO ,第 0-0 条,用时:0.0021 秒。 --------...
按照http://www.xunsearch.com/doc/php/guide/start.demo的指导, [code]cd $prefix/sdk/php util/Indexer.php --source=csv --clean demo[/code] 提示如下: /usr/bin/env: php: No such file or directory 请问是什么原因?
[quote='hina' pid='7464' dateline='1398851554'] 感觉XUNSEARCH资料很少啊 [/quote] 是呢...我是看了update的源码才确认的update操作会删除再重新add 现在我只想更新doc下面的某一个field....
[attachment=51][attachment=52]http://www.xunsearch.com/doc/php/guide/start.demo[img]C:\Users\illow\Desktop\桌面图纸.jpg[/img][/img]:\Users\illow\Desktop\截图.jpg[/img]
[php] echo '搜索结果'; $xs = new XS('test1'); $index = $xs->index; $index = setDb('test2'); $search = $xs->searcg; $docs = $search->addDb('test2')->setFuzzy->setQuery($key)->search(); [/php] 请问这种写法有错么?
建议看这里:[url]http://www.xunsearch.com/doc/php/guide/start.demo[/url]
addWeight('title', $skey) 作何解释?addWeight 是只针对一个词的。 此外 $skey 发果是关键字你就用 setQuery($skey . " type:1") 这样啊,详见: http://www.xunsearch.com/doc/php/guide/search.query
require_once 'xunsearch/lib/XS.php'; $xs = new XS('demo'); var_dump($xs); //到这里是正常的 $doc = new MyDocument; // Class 'MyDocument' not found 肯定没有这个类啊 我该怎么操作呢
$xs = new XS($project); $search = $xs->search; $docs = $search->setQuery()->search(); 不设置关键词就行了
前台数据用xunsearch就好,只索引发布的内容(普通浏览者可以看到的)。 管理后台搜索的话,还是用mysql like吧。 如果非要这么做那就多看下这个文档: http://xunsearch.com/doc/php/guide/search.query