CLucene中的内存泄漏

时间:2013-09-11 14:09:18

标签: c++ lucene

我正在使用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并且应用程序崩溃。谁能告诉我这有什么问题?为什么内存如此之高,应用程序崩溃?

1 个答案:

答案 0 :(得分:1)

您永远不会取消分配parser

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

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

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

(你不必那么多地测试NULL - delete空指针就可以了。)