博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
solr原子更新-即指定更新某个字段的值
阅读量:6320 次
发布时间:2019-06-22

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

hot3.png

官方文档:https://wiki.apache.org/solr/Atomic_Updates

SolrInputDocument solrInputDocument = new SolrInputDocument();

solrInputDocument.addField("id", id);
Map<String, String > operation = new HashMap<>();
operation.put("set""test1");
solrInputDocument.addField("title", operation);
solrServer.add(solrInputDocument);
solrServer.commit();

官方文档中,要注意:

The core functionality of atomically updating a document requires that all fields in your SchemaXml must be configured as stored="true"

solr原子更新,支持store=true,如果store为false,更新后字段会丢失。

转载于:https://my.oschina.net/u/2293326/blog/749255

你可能感兴趣的文章
folders.cgi占用系统大量资源
查看>>
路由器ospf动态路由配置
查看>>
zabbix监控安装与配置
查看>>
python 异常
查看>>
last_insert_id()获取mysql最后一条记录ID
查看>>
可执行程序找不到lib库地址的处理方法
查看>>
bash数组
查看>>
Richard M. Stallman 给《自由开源软件本地化》写的前言
查看>>
oracle数据库密码过期报错
查看>>
zip
查看>>
How to recover from root.sh on 11.2 Grid Infrastructure Failed
查看>>
rhel6下安装配置Squid过程
查看>>
《树莓派开发实战(第2版)》——1.1 选择树莓派型号
查看>>
在 Linux 下使用 fdisk 扩展分区容量
查看>>
结合AlphaGo算法和大数据的量化基本面分析法探讨
查看>>
如何在 Ubuntu Linux 16.04 LTS 中使用多个连接加速 apt-get/apt
查看>>
《OpenACC并行编程实战》—— 导读
查看>>
机器学习:用初等数学解读逻辑回归
查看>>
find和xargs
查看>>
数据结构例程—— 交换排序之快速排序
查看>>