热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

org.apache.solr.common.SolrDocument.setField()方法的使用及代码示例

本文整理了Java中org.apache.solr.common.SolrDocument.setField()方法的一些代码示例,展示了SolrDocum

本文整理了Java中org.apache.solr.common.SolrDocument.setField()方法的一些代码示例,展示了SolrDocument.setField()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SolrDocument.setField()方法的具体详情如下:
包路径:org.apache.solr.common.SolrDocument
类名称:SolrDocument
方法名:setField

SolrDocument.setField介绍

[英]Set a field with the given object. If the object is an Array, it will set multiple fields with the included contents. This will replace any existing field with the given name
[中]用给定对象设置一个字段。如果对象是数组,它将设置包含内容的多个字段。这将用给定的名称替换任何现有字段

代码示例

代码示例来源:origin: apache/incubator-sentry

@Override
public void transform(SolrDocument doc, int docid) {
doc.setField( name, docid );
}
}

代码示例来源:origin: org.apache.solr/solr-common

this.setField( name, value );
return;

代码示例来源:origin: org.apache.solr/solr-solrj

c.add(o);
this.setField( name, c );
} else {
this.setField( name, value );

代码示例来源:origin: com.hynnet/solr-solrj

c.add(o);
this.setField( name, c );
} else {
this.setField( name, value );

代码示例来源:origin: org.dspace.dependencies.solr/dspace-solr-solrj

/**
* @param d SolrInputDocument to convert
* @return a SolrDocument with the same fields and values as the SolrInputDocument
*/
public static SolrDocument toSolrDocument( SolrInputDocument d )
{
SolrDocument doc = new SolrDocument();
for( SolrInputField field : d ) {
doc.setField( field.getName(), field.getValue() );
}
return doc;
}

代码示例来源:origin: keeps/roda

public static SolrInputDocument addOtherPropertiesToIndexedFile(String prefix, OtherMetadata otherMetadataBinary,
ModelService model, SolrClient index)
throws RequestNotValidException, GenericException, NotFoundException, AuthorizationDeniedException,
ParserConfigurationException, SAXException, IOException, XPathExpressionException, SolrServerException {
SolrDocument solrDocument = index.getById(RodaConstants.INDEX_FILE,
IdUtils.getFileId(otherMetadataBinary.getAipId(), otherMetadataBinary.getRepresentationId(),
otherMetadataBinary.getFileDirectoryPath(), otherMetadataBinary.getFileId()));
Binary binary = model.retrieveOtherMetadataBinary(otherMetadataBinary);
Map> otherProperties = MetadataFileUtils.parseBinary(binary);
for (Map.Entry> entry : otherProperties.entrySet()) {
solrDocument.setField(prefix + entry.getKey(), entry.getValue());
}
return solrDocumentToSolrInputDocument(solrDocument);
}

代码示例来源:origin: org.apache.solr/solr-solrj

public SolrDocument readSolrDocument(DataInputInputStream dis) throws IOException {
tagByte = dis.readByte();
int size = readSize(dis);
SolrDocument doc = new SolrDocument(new LinkedHashMap<>(size));
for (int i = 0; i String fieldName;
Object obj = readVal(dis); // could be a field name, or a child document
if (obj instanceof SolrDocument) {
doc.addChildDocument((SolrDocument)obj);
continue;
} else {
fieldName = (String)obj;
}
Object fieldVal = readVal(dis);
doc.setField(fieldName, fieldVal);
}
return doc;
}

代码示例来源:origin: org.apache.solr/solr-common

public SolrDocument readSolrDocument(FastInputStream dis) throws IOException {
NamedList nl = (NamedList) readVal(dis);
SolrDocument doc = new SolrDocument();
for (int i = 0; i String name = nl.getName(i);
Object val = nl.getVal(i);
doc.setField(name, val);
}
return doc;
}

代码示例来源:origin: org.dspace.dependencies.solr/dspace-solr-core

private void returnFields(ResponseBuilder rb, ShardRequest sreq) {
// Keep in mind that this could also be a shard in a multi-tiered system.
// TODO: if a multi-tiered system, it seems like some requests
// could/should bypass middlemen (like retrieving stored fields)
// TODO: merge fsv to if requested
if ((sreq.purpose & ShardRequest.PURPOSE_GET_FIELDS) != 0) {
boolean returnScores = (rb.getFieldFlags() & SolrIndexSearcher.GET_SCORES) != 0;
assert(sreq.responses.size() == 1);
ShardResponse srsp = sreq.responses.get(0);
SolrDocumentList docs = (SolrDocumentList)srsp.getSolrResponse().getResponse().get("response");
String keyFieldName = rb.req.getSchema().getUniqueKeyField().getName();
for (SolrDocument doc : docs) {
Object id = doc.getFieldValue(keyFieldName);
ShardDoc sdoc = rb.resultIds.get(id.toString());
if (sdoc != null) {
if (returnScores && sdoc.score != null) {
doc.setField("score", sdoc.score);
}
rb._responseDocs.set(sdoc.positionInResponse, doc);
}
}
}
}

代码示例来源:origin: apache/incubator-sentry

private static SolrDocument toSolrDoc(Document doc, IndexSchema schema) {
SolrDocument out = new SolrDocument();
for ( IndexableField f : doc.getFields() ) {
// Make sure multivalued fields are represented as lists
Object existing = out.get(f.name());
if (existing == null) {
SchemaField sf = schema.getFieldOrNull(f.name());
// don't return copyField targets
if (sf != null && schema.isCopyFieldTarget(sf)) continue;
if (sf != null && sf.multiValued()) {
List vals = new ArrayList<>();
vals.add( f );
out.setField( f.name(), vals );
}
else{
out.setField( f.name(), f );
}
}
else {
out.addField( f.name(), f );
}
}
return out;
}

代码示例来源:origin: sirensolutions/siren

@Override
public void transform(SolrDocument doc, int docid) throws IOException {
Query query = context.query;
SimpleJsonByQueryExtractor extractor = new SimpleJsonByQueryExtractor();
try {
IndexSchema schema = context.req.getSchema();
for (String fieldName : doc.getFieldNames()) {
FieldType ft = schema.getFieldOrNull(fieldName).getType();
if (ft instanceof ExtendedJsonField) {
String sirenField = (String) doc.getFieldValue(fieldName);
String json = extractor.extractAsString(sirenField, query);
if (json == null) {
// query doesn't contain variables, no transformation is necessary
continue;
}
doc.setField(fieldName, json);
}
}
} catch (ProjectionException e) {
throw new IOException(String.format(
"Problem while projecting (extracting variables from matched document id %s",
doc.getFieldValue("id")), e);
}
}

代码示例来源:origin: apache/stanbol

negativeSupport, uptodate, evaluationDate);
if (metadata.getFieldValues(falsePositivesField) == null) {
metadata.setField(falsePositivesField, new ArrayList());
metadata.setField(falseNegativesField, new ArrayList());

代码示例来源:origin: org.apache.stanbol/org.apache.stanbol.enhancer.engine.topic

negativeSupport, uptodate, evaluationDate);
if (metadata.getFieldValues(falsePositivesField) == null) {
metadata.setField(falsePositivesField, new ArrayList());
metadata.setField(falseNegativesField, new ArrayList());

代码示例来源:origin: com.hynnet/solr-solrj

public SolrDocument readSolrDocument(DataInputInputStream dis) throws IOException {
tagByte = dis.readByte();
int size = readSize(dis);
SolrDocument doc = new SolrDocument();
for (int i = 0; i String fieldName;
Object obj = readVal(dis); // could be a field name, or a child document
if (obj instanceof SolrDocument) {
doc.addChildDocument((SolrDocument)obj);
continue;
} else {
fieldName = (String)obj;
}
Object fieldVal = readVal(dis);
doc.setField(fieldName, fieldVal);
}
return doc;
}

代码示例来源:origin: com.hynnet/solr-solrj

/**
* @param d SolrInputDocument to convert
* @return a SolrDocument with the same fields and values as the SolrInputDocument
*/
public static SolrDocument toSolrDocument(SolrInputDocument d) {
SolrDocument doc = new SolrDocument();
for (SolrInputField field : d) {
doc.setField(field.getName(), field.getValue());
}
if (d.getChildDocuments() != null) {
for (SolrInputDocument in : d.getChildDocuments()) {
doc.addChildDocument(toSolrDocument(in));
}
}
return doc;
}

代码示例来源:origin: ChronixDB/chronix.server

/**
* Converts a lucene document to a solr document.
*
* @param schema the index schema
* @param luceneDoc the lucene document
* @return solr document
*/
public SolrDocument toSolrDoc(IndexSchema schema, Document luceneDoc) {
SolrDocument solrDoc = new SolrDocument();
luceneDoc.forEach(it -> solrDoc.addField(it.name(), schema.getField(it.name()).getType().toObject(it)));
for (String field : solrDoc.getFieldNames()) {
Object value = solrDoc.getFieldValue(field);
if (value instanceof ByteBuffer) {
solrDoc.setField(field, ((ByteBuffer) value).array());
}
}
return solrDoc;
}

代码示例来源:origin: ChronixDB/chronix.server

private SolrDocument solrDocumentWithOutTimeSeriesFunctionResults(boolean dataShouldReturned, boolean dataAsJson, ChronixTimeSeries timeSeries) {
SolrDocument doc = new SolrDocument();
//add the join key
doc.put(ChronixQueryParams.JOIN_KEY, timeSeries.getJoinKey());
for (Map.Entry entry : (Set>) timeSeries.getAttributes().entrySet()) {
doc.addField(entry.getKey(), entry.getValue());
}
//add the metric field as it is not stored in the getAttributes
doc.addField(Schema.NAME, timeSeries.getName());
doc.addField(Schema.TYPE, timeSeries.getType());
//TODO: Fix this. It is expensive to calculate this based on the points. This is already stored.
doc.addField(Schema.START, timeSeries.getStart());
doc.addField(Schema.END, timeSeries.getEnd());
if (dataShouldReturned) {
//ensure that the returned data is sorted
timeSeries.sort();
//data should returned serialized as json
if (dataAsJson) {
doc.setField(ChronixQueryParams.DATA_AS_JSON, timeSeries.dataAsJson());
} else {
doc.addField(Schema.DATA, timeSeries.dataAsBlob());
}
}
return doc;
}

推荐阅读
  • 视觉Transformer综述
    本文综述了视觉Transformer在计算机视觉领域的应用,从原始Transformer出发,详细介绍了其在图像分类、目标检测和图像分割等任务中的最新进展。文章不仅涵盖了基础的Transformer架构,还深入探讨了各类增强版Transformer模型的设计思路和技术细节。 ... [详细]
  • 本文详细介绍如何在SSM(Spring + Spring MVC + MyBatis)框架中实现分页功能。包括分页的基本概念、数据准备、前端分页栏的设计与实现、后端分页逻辑的编写以及最终的测试步骤。 ... [详细]
  • 本文详细介绍了如何使用C#实现不同类型的系统服务账户(如Windows服务、计划任务和IIS应用池)的密码重置方法。 ... [详细]
  • 本文回顾了作者在求职阿里和腾讯实习生过程中,从最初的迷茫到最后成功获得Offer的心路历程。文中不仅分享了个人的面试经历,还提供了宝贵的面试准备建议和技巧。 ... [详细]
  • td{border:1pxsolid#808080;}参考:和FMX相关的类(表)TFmxObjectIFreeNotification ... [详细]
  • 本文详细介绍了 `org.apache.tinkerpop.gremlin.structure.VertexProperty` 类中的 `key()` 方法,并提供了多个实际应用的代码示例。通过这些示例,读者可以更好地理解该方法在图数据库操作中的具体用途。 ... [详细]
  • 深入解析Unity3D游戏开发中的音频播放技术
    在游戏开发中,音频播放是提升玩家沉浸感的关键因素之一。本文将探讨如何在Unity3D中高效地管理和播放不同类型的游戏音频,包括背景音乐和效果音效,并介绍实现这些功能的具体步骤。 ... [详细]
  • 深入解析 C++ 中的 String 和 Vector
    本文详细介绍了 C++ 编程语言中 String 和 Vector 的使用方法及特性,旨在帮助开发者更好地理解和应用这两个重要的容器。 ... [详细]
  • ASP.NET 进度条实现详解
    本文介绍了如何在ASP.NET中使用HTML和JavaScript创建一个动态更新的进度条,并通过Default.aspx页面进行展示。 ... [详细]
  • hlg_oj_1116_选美大赛这题是最长子序列,然后再求出路径就可以了。开始写的比较乱,用数组什么的,后来用了指针就好办了。现在把代码贴 ... [详细]
  • 长期从事ABAP开发工作的专业人士,在面对行业新趋势时,往往需要重新审视自己的发展方向。本文探讨了几位资深专家对ABAP未来走向的看法,以及开发者应如何调整技能以适应新的技术环境。 ... [详细]
  • C/C++ 应用程序的安装与卸载解决方案
    本文介绍了如何使用Inno Setup来创建C/C++应用程序的安装程序,包括自动检测并安装所需的运行库,确保应用能够顺利安装和卸载。 ... [详细]
  • Hibernate全自动全映射ORM框架,旨在消除sql,是一个持久层的ORM框架1)、基础概念DAO(DataAccessorOb ... [详细]
  • 本文探讨了异步编程的发展历程,从最初的AJAX异步回调到现代的Promise、Generator+Co以及Async/Await等技术。文章详细分析了Promise的工作原理及其源码实现,帮助开发者更好地理解和使用这一重要工具。 ... [详细]
  • 本文详细介绍了在Windows系统中如何配置Nginx以实现高效的缓存加速功能,包括关键的配置文件设置和示例代码。 ... [详细]
author-avatar
疯子jiushiwohaha
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有