0

Lucene ベースのアプリケーションに Hibernate Search を実装しました。データベースにインデックスを付けるたびに、lucene インデックスのサイズが増加します。ただし、クエリの結果は毎回同じ数の結果を返します。

毎回同じデータにインデックスを付けると、毎回 lucene のサイズが大きくなるのはなぜですか?

FullTextSession fullTextSession = Search.getFullTextSession(getSession());
    org.hibernate.Transaction tx = fullTextSession.beginTransaction();

    Criteria criteria = fullTextSession.createCriteria(getPersistentClass())
    .setResultTransformer(CriteriaSpecification.DISTINCT_ROOT_ENTITY)
    .setCacheMode(CacheMode.IGNORE)
    .setFetchSize(pageSize)
    .setFlushMode(FlushMode.MANUAL);


    int i = 0;
    List<ProdAttrAssociationVO> results = null;
    do {
      criteria = criteria.setFirstResult(i)
        .setMaxResults(pageSize);
      results = criteria.list();

      for (ProdAttrAssociationVO entity : results) {
        fullTextSession.delete(entity);
        fullTextSession.index(entity);
      }

      // flush the index changes to disk so we don't hold until a commit
      if (i % batchSize == 0) {
        fullTextSession.flushToIndexes();
        fullTextSession.clear();
      }

      i += pageSize;
    } while (results.size() > 0);


    System.out.println("ProdAttrAssociation Indexing Completed");
    tx.commit();
4

1 に答える 1

6

Hibernateについては何も知りませんが、一般的にLuceneでは、削除されたドキュメントは最適化されるまでインデックスに残ります。それはあなたがインデックスが成長しているだけを見ている理由を説明するかもしれません。

インデックスでoptimize()を実行してみてください。Hibernateからどのように実行するかわからない(SearchFactoryのメソッドだと思います)。

お役に立てれば。

于 2009-06-21T09:08:14.563 に答える