當前位置: 首頁>>代碼示例>>Java>>正文


Java SolrCore.getName方法代碼示例

本文整理匯總了Java中org.apache.solr.core.SolrCore.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java SolrCore.getName方法的具體用法?Java SolrCore.getName怎麽用?Java SolrCore.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.solr.core.SolrCore的用法示例。


在下文中一共展示了SolrCore.getName方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: closeIndexWriter

import org.apache.solr.core.SolrCore; //導入方法依賴的package包/類
@Override
public synchronized void closeIndexWriter(SolrCore core, boolean rollback)
    throws IOException {
  log.info("Closing IndexWriter...");
  String coreName = core.getName();
  synchronized (writerPauseLock) {
    if (closed) {
      throw new SolrException(ErrorCode.SERVICE_UNAVAILABLE, "Already closed");
    }
    
    // we need to wait for the Writer to fall out of use
    // first lets stop it from being lent out
    pauseWriter = true;
    // then lets wait until its out of use
    log.info("Waiting until IndexWriter is unused... core=" + coreName);
    
    while (!writerFree) {
      try {
        writerPauseLock.wait(100);
      } catch (InterruptedException e) {}
      
      if (closed) {
        throw new SolrException(ErrorCode.SERVICE_UNAVAILABLE,
            "SolrCoreState already closed");
      }
    }
    
    if (indexWriter != null) {
      if (!rollback) {
        closeIndexWriter(coreName);
      } else {
        rollbackIndexWriter(coreName);
      }
    }
    
  }
}
 
開發者ID:europeana,項目名稱:search,代碼行數:38,代碼來源:DefaultSolrCoreState.java

示例2: SolrCoreCommitAgent

import org.apache.solr.core.SolrCore; //導入方法依賴的package包/類
public SolrCoreCommitAgent(SolrCore solrCore) {
    super(solrCore.getName() + "/commit", "solr/core/commit");

    this.solrCore = solrCore;
    SolrCore.log.info("Initializing " + this.getClass().getSimpleName() + " for Core '" + this.solrCore + "'.");

    this.solrCore.registerNewSearcherListener(this);
    this.solrCore.getUpdateHandler().registerCommitCallback(this);
    this.solrCore.getUpdateHandler().registerSoftCommitCallback(this);
}
 
開發者ID:Indoqa,項目名稱:logspace,代碼行數:11,代碼來源:SolrCoreCommitAgent.java

示例3: newIndexWriter

import org.apache.solr.core.SolrCore; //導入方法依賴的package包/類
@Override
public synchronized void newIndexWriter(SolrCore core, boolean rollback) throws IOException {
  log.info("Creating new IndexWriter...");
  String coreName = core.getName();
  synchronized (writerPauseLock) {
    if (closed) {
      throw new SolrException(ErrorCode.SERVICE_UNAVAILABLE, "Already closed");
    }
    
    // we need to wait for the Writer to fall out of use
    // first lets stop it from being lent out
    pauseWriter = true;
    // then lets wait until its out of use
    log.info("Waiting until IndexWriter is unused... core=" + coreName);
    
    while (!writerFree) {
      try {
        writerPauseLock.wait(100);
      } catch (InterruptedException e) {}
      
      if (closed) {
        throw new SolrException(ErrorCode.SERVICE_UNAVAILABLE, "SolrCoreState already closed");
      }
    }

    try {
      if (indexWriter != null) {
        if (!rollback) {
          closeIndexWriter(coreName);
        } else {
          rollbackIndexWriter(coreName);
        }
      }
      indexWriter = createMainIndexWriter(core, "DirectUpdateHandler2");
      log.info("New IndexWriter is ready to be used.");
      // we need to null this so it picks up the new writer next get call
      refCntWriter = null;
    } finally {
      
      pauseWriter = false;
      writerPauseLock.notifyAll();
    }
  }
}
 
開發者ID:europeana,項目名稱:search,代碼行數:45,代碼來源:DefaultSolrCoreState.java

示例4: SolrCoreStatisticsAgent

import org.apache.solr.core.SolrCore; //導入方法依賴的package包/類
public SolrCoreStatisticsAgent(SolrCore solrCore) {
    super(solrCore.getName() + "/statistics", "solr/core/statistics");

    this.solrCore = solrCore;
    SolrCore.log.info("Initializing " + this.getClass().getSimpleName() + " for Core '" + this.solrCore + "'.");
}
 
開發者ID:Indoqa,項目名稱:logspace,代碼行數:7,代碼來源:SolrCoreStatisticsAgent.java


注:本文中的org.apache.solr.core.SolrCore.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。