是这样,应为主题表和回帖表里面的字段不一样,索引的相关字段也可能不同。 比如说主题里有id,fid,author,authorid,time,title,body,isdel,ishidden,isreply等等,这些都放到索引里 而回帖表里有tid,author,authorid,time,body,isdel,isUseTools,ishidde...
字段设计有点问题。当type为string,没有指明index索引方式是是不分词的。 [title] type=string index=both 和 [title] type=title 这两个字段设计效果一样。同样content,类型也有问题,可以这样 [content] type=body 或者 [content] type=string index=mixed 具...
mysql导入数据配置文件里的字段要和数据库里的一样吗? #1 {main}警告:添加第 35000 条数据失败 - Missing value of primarky key (FIELD:pid) #0 /usr/local/xunsearch/sdk/php/util/Indexer.php(195): XSIndex->update(Object(XSDocument)) sql语句: sql="select c.content...
...别,有的甚至3-4分钟。这是为何? 项目只要求对content字段检索,其他字段都不需要参与检索和分词。 帖出我的配置文件: [tweetId] type = id tokenizer = none [content] type = body cutlen = 600 [authorId] tokenizer = none [sendTime] tokeni...
配置的ini文件中,创建了很多的字段,这个对索引的速度有影响吗?影响有多大? project.name = s1 project.default_charset = utf-8 server.index = 8383 server.search = 8384 [xsid] type = id [pid] tokenizer = full type = numeric index = self [tid] type = str...
...有问题,贴出来大家帮看看,谢谢了! 搜索主要用以下字段 ①数据库中的title字段(代表文章唯一编号,即PMID) ②数据库中tag字段(代表文章关键词) ③数据库中content字段(代表全文,即搜索页面的摘要) #主要是搜索这...
...插入的数据编号和插入状态,然后处理之:[/b] crontab表 字段说明: id 编号 sid 数据编号,即sample表的id字段 bool 状态嘛 0待处理,1正在处理或者处理失败,2添加成功 使用如下SQL语句初始化crontab表: [code]insert into `crontab` (`...
...,只搜索标题等条件。 现在我们来设计一下项目需要的字段。 以下是伪代码,请勿直接复制使用 project.name = myblog project.default_charset = utf-8 server.index = 8383 server.search = 8384 [ID] // 文章ID type = id phrase = yes [author] //作者 i...