7 Star 11 Fork 5

sunny/crawler4zb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
solrtest.js 718 Bytes
一键复制 编辑 原始数据 按行查看 历史
sunny 提交于 2016-11-22 21:53 . # 加入全文检索支持
"use strict"
/**
* 测试solr全文检索
*
*/
var dateFormat = require('dateformat');
require('date-utils');
var indexer = require("./index");
var q = { "title": "税务 国家税务", "source": "安徽国家税务局" };
var now = Date.today();
var startDay = indexer.getBeforeDate(9);
q.create_time = {
start: startDay,
end: now,
field: "create_time"
};
indexer.query(q, 0, 10, function (err, data) {
if (!data) {
console.log("没有找到资源");
return;
}
console.log("total : " + data.response.numFound);
console.log(data.response.docs);
});
var test = "你好,我的朋友,我是涂飞平";
console.log(test.replace(/,/g, " ").replace(/,/g, " "));
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/tufeiping/crawler4zb.git
[email protected]:tufeiping/crawler4zb.git
tufeiping
crawler4zb
crawler4zb
master

搜索帮助