0

我正在使用 CLucene 创建索引和搜索。创建的索引文件超过 5 GB。我为 CLucene 搜索创建了单独的 dll。DLL 构造函数包含以下代码

lucene::index::IndexReader ptrIndexReader;
lucene::search::IndexSearcher searcher; these are defined in class decalaration/

ptrIndexReader = IndexReader::open(pDir.c_str(),false,NULL);
searcher = new IndexSearcher(ptrIndexReader);

我使用一个搜索功能,其代码如下

bool LuceneWrapper::SearchIndex(wstring somevalue)
{
    lucene::analysis::KeywordAnalyzer fAnalyzer;

    Document doc = NULL;

    Hits hits = NULL;

    Query f_objQuery = NULL;

    NistRecord *f_objRecords = NULL;

    bool flag = false;

    try{
       if (ptrIndexReader == NULL)
       {
          return NULL;
       }
       // Initialize IndexSearcher
       wstring strQuery = _T("+somename:") + somevalue;
       // Initialize Query Parser, with Keyword Analyzer

       QueryParser *parser = new QueryParser( _T(""),&fAnalyzer);
       // Parse Query string

       f_objQuery = parser->parse(strQuery.c_str());
       // Search Index directory

       hits = searcher->search(f_objQuery);

       //searcher.

       int intHitCount =   0;
       intHitCount  = hits->length; 

       if(intHitCount > 0)
       {    
           if(doc!=NULL)
              delete [] doc;
           flag =  true;
       }

       //searcher.close();
  }
  catch(CLuceneError& objExp)
  {
      if(doc!=NULL)
          delete  doc;
      return false;
  }

  if(hits!=NULL)
      delete hits;

  if(f_objQuery!=NULL)
      delete f_objQuery;

  return flag ;
}

我正在搜索大量的值。根据记录计数,主内存变得越来越高,在级别上它接近 2 GB 并且应用程序崩溃。谁能告诉我这有什么问题?为什么内存这么高而应用程序崩溃?

4

1 回答 1

1

你永远不会取消分配parser

我看不出动态分配它的理由。
你为什么不直接说

 QueryParser parser( _T(""), &fAnalyzer);
 f_objQuery = parser.parse(strQuery.c_str());

您还需要确保在发生异常时删除f_objQuery两者。如果您可以访问它,可以在这里为您提供帮助。hits
std::unique_ptr

(而且您不必对 NULL 进行太多测试 - 可以delete使用空指针。)

于 2013-09-11T14:23:01.663 回答