Chinaunix首页 | 论坛 | 博客
  • 博客访问: 772106
  • 博文数量: 160
  • 博客积分: 2516
  • 博客等级: 大尉
  • 技术积分: 1511
  • 用 户 组: 普通用户
  • 注册时间: 2004-10-24 17:58
文章分类

全部博文(160)

文章存档

2019年(2)

2018年(3)

2017年(15)

2016年(3)

2015年(11)

2014年(3)

2013年(1)

2012年(3)

2011年(17)

2010年(25)

2009年(17)

2008年(13)

2007年(14)

2006年(21)

2005年(10)

2004年(2)

分类: Java

2015-06-26 16:08:58

网上很多人在找Solrj更新一个或几个字段值的方法,下面把方法写出来,希望大家少浪费时间在这上面:
public static void update(String id, Object fieldValue) throws IOException, SolrServerException {
    HashMap<String, Object> oper = new HashMap<String, Object>();
    oper.put("set", fieldValue);

    SolrInputDocument doc = new SolrInputDocument();
    doc.addField("id", id);
    doc.addField("fieldName", oper);
    
    HttpSolrClient client = new HttpSolrClient(baseURL);
    client.add(doc);
    client.commit();
}
阅读(6231) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~