本文整理汇总了Java中org.apache.solr.common.SolrInputDocument.containsKey方法的典型用法代码示例。如果您正苦于以下问题:Java SolrInputDocument.containsKey方法的具体用法?Java SolrInputDocument.containsKey怎么用?Java SolrInputDocument.containsKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.solr.common.SolrInputDocument
的用法示例。
在下文中一共展示了SolrInputDocument.containsKey方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: writeDocs
import org.apache.solr.common.SolrInputDocument; //导入方法依赖的package包/类
/**
* @param aggregateRecords
* @throws IndexerException
* @throws FatalIndexerException
* @see de.intranda.digiverso.presentation.solr.model.ISolrWriteStrategy#writeDocs()
* @should write all structure docs correctly
* @should write all page docs correctly
*/
@Override
public void writeDocs(boolean aggregateRecords) throws IndexerException, FatalIndexerException {
if (rootDoc == null) {
throw new IndexerException("rootDoc may not be null");
}
for (int order : pageOrderMap.keySet()) {
SolrInputDocument pageDoc = pageOrderMap.get(order);
checkAndAddAccessCondition(pageDoc);
docsToAdd.add(pageDoc);
}
for (SolrInputDocument doc : docsToAdd) {
if (doc.getFieldValue("GROUPFIELD") == null) {
logger.error("Field has no GROUPFIELD: {}", doc.toString());
}
rootDoc.addChildDocument(doc);
if (aggregateRecords) {
if (doc.containsKey(SolrConstants.DEFAULT)) {
rootDoc.addField(SolrConstants.SUPERDEFAULT, (doc.getFieldValue(SolrConstants.DEFAULT)));
}
// if (doc.containsKey(SolrConstants.NORMDATATERMS)) {
// rootDoc.addField(SolrConstants.NORMDATATERMS, doc.getFieldValue(SolrConstants.NORMDATATERMS));
// }
if (doc.containsKey(SolrConstants.FULLTEXT)) {
rootDoc.addField(SolrConstants.SUPERFULLTEXT, (doc.getFieldValue(SolrConstants.FULLTEXT)));
}
}
}
solrHelper.writeToIndex(rootDoc);
solrHelper.commit(SolrHelper.optimize);
logger.debug("{} new doc(s) added.", docsToAdd.size());
}
示例2: checkAndAddAccessCondition
import org.apache.solr.common.SolrInputDocument; //导入方法依赖的package包/类
/**
* Adds OPENACCESS access condition field value to the give doc, if it has none.
*
* @param doc
*/
void checkAndAddAccessCondition(SolrInputDocument doc) {
if (!doc.containsKey(SolrConstants.ACCESSCONDITION)) {
doc.addField(SolrConstants.ACCESSCONDITION, SolrConstants.OPEN_ACCESS_VALUE);
}
}
示例3: writeDocs
import org.apache.solr.common.SolrInputDocument; //导入方法依赖的package包/类
/**
* @param aggregateHits
* @throws IndexerException
* @throws FatalIndexerException
* @see de.intranda.digiverso.presentation.solr.model.ISolrWriteStrategy#writeDocs()
* @should write all structure docs correctly
* @should write all page docs correctly
*/
@Override
public void writeDocs(boolean aggregateRecords) throws IndexerException, FatalIndexerException {
if (rootDoc == null) {
throw new IndexerException("topDoc may not be null");
}
docsToAdd.add(rootDoc);
String pi = (String) rootDoc.getFieldValue(SolrConstants.PI);
for (int order : pageOrderMap.keySet()) {
SolrInputDocument pageDoc = pageOrderMap.get(order);
checkAndAddAccessCondition(pageDoc);
docsToAdd.add(pageDoc);
if (!pageDoc.containsKey(SolrConstants.PI_TOPSTRUCT) && pi != null) {
pageDoc.addField(SolrConstants.PI_TOPSTRUCT, pi);
logger.warn("Page document {} has no PI_TOPSTRUCT fields, adding now...", pageDoc.getFieldValue(SolrConstants.ORDER));
}
// Remove ALTO field (easier than removing all the logic involved in adding the ALTO field)
if (pageDoc.containsKey(SolrConstants.ALTO)) {
pageDoc.removeField(SolrConstants.ALTO);
}
}
for (SolrInputDocument doc : docsToAdd) {
if (doc.getFieldValue("GROUPFIELD") == null) {
logger.error("Field has no GROUPFIELD: {}", doc.toString());
}
if (aggregateRecords) {
if (doc.containsKey(SolrConstants.DEFAULT)) {
rootDoc.addField(SolrConstants.SUPERDEFAULT, doc.getFieldValue(SolrConstants.DEFAULT));
}
// if (doc.containsKey(SolrConstants.NORMDATATERMS)) {
// rootDoc.addField(SolrConstants.NORMDATATERMS, doc.getFieldValue(SolrConstants.NORMDATATERMS));
// }
if (doc.containsKey(SolrConstants.FULLTEXT)) {
rootDoc.addField(SolrConstants.SUPERFULLTEXT, doc.getFieldValue(SolrConstants.FULLTEXT));
}
}
}
if (!docsToAdd.isEmpty()) {
solrHelper.writeToIndex(docsToAdd);
solrHelper.commit(SolrHelper.optimize);
logger.debug("{} new doc(s) added.", docsToAdd.size());
} else {
throw new IndexerException("No docs to write");
}
}