博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Solr增量更新索引
阅读量:6547 次
发布时间:2019-06-24

本文共 692 字,大约阅读时间需要 2 分钟。

在配置好与MYSQL的数据源基础上,做增量更新索引,总结如下
1.data-config.xml内容修改为
<dataConfig>
    <dataSource driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/demo" user="root" password=""/>
    <document name="products">
       <entity name="item" pk="id"
          query="SELECT id,title,contents,last_index_time FROM solr_articles"
          deltaImportQuery="SELECT id,title,contents,last_index_time FROM solr_articles
            WHERE id = '${dataimporter.delta.id}'"
          deltaQuery="SELECT id FROM solr_articles
            WHERE last_index_time > '${dataimporter.last_index_time}'">
        </entity>
    </document>
</dataConfig>
2. 通过访问: 实现增量更新
更新成功之后,conf/dataimport.properties时间会改变
3.通过对 定时请求达到定时增量更新索引目的

转载于:https://www.cnblogs.com/bobsoft/archive/2012/10/07/2714520.html

你可能感兴趣的文章
基于js的CC攻击实现与防御
查看>>
我的家庭私有云计划-19
查看>>
项目实践中Linux集群的总结和思考
查看>>
关于使用Android NDK编译ffmpeg
查看>>
监控MySQL主从同步是否异常并报警企业案例模拟
查看>>
zabbix从2.2.3升级到最新稳定版3.2.1
查看>>
我有一个网站,想提高点权重
查看>>
浅谈(SQL Server)数据库中系统表的作用
查看>>
微软邮件系统Exchange 2013系列(七)创建发送连接器
查看>>
程序员杂记系列
查看>>
【树莓派】制作树莓派所使用的img镜像(一)
查看>>
理解网站并发量
查看>>
spring整合elasticsearch之环境搭建
查看>>
TensorFlow 架构与设计-编程模型【转】
查看>>
如何运行Struts2官网最新Demo?
查看>>
'ascii' codec can't decode byte 0xe6 in position 0: ordinal not in range(128)
查看>>
XDebug 教程
查看>>
js 去html 标签
查看>>
好久不见
查看>>
小tips:JS中的children和childNodes
查看>>