Examples of LuceneWork


Examples of org.hibernate.search.backend.LuceneWork

    Class<?> entityClass = ClassLoaderHelper.classForName(
        entityClassName,
        "entity class",
        searchFactory.getServiceManager()
    );
    LuceneWork result = new DeleteLuceneWork(
        id,
        objectIdInString( entityClass, id, conversionContext ),
        entityClass
    );
    results.add( result );
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

    Class<?> entityClass = ClassLoaderHelper.classForName(
        entityClassName,
        "entity class",
        searchFactory.getServiceManager()
    );
    LuceneWork result = new AddLuceneWork(
        id,
        objectIdInString( entityClass, id, conversionContext ),
        entityClass,
        getLuceneDocument(),
        fieldToAnalyzerMap
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

    Class<?> entityClass = ClassLoaderHelper.classForName(
        entityClassName,
        "entity class",
        searchFactory.getServiceManager()
    );
    LuceneWork result = new UpdateLuceneWork(
        id,
        objectIdInString( entityClass, id, conversionContext ),
        entityClass,
        getLuceneDocument(),
        fieldToAnalyzerMap
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

    doc.add( field );
    field = new Field( "logo", shirt.getLogo(), Field.Store.NO, Field.Index.ANALYZED );
    doc.add( field );
    DoubleField numField = new DoubleField( "length", shirt.getLength(), Field.Store.NO );
    doc.add( numField );
    LuceneWork luceneWork = new AddLuceneWork(
        shirt.getId(), String.valueOf( shirt.getId() ), shirt.getClass(), doc
    );
    List<LuceneWork> queue = new ArrayList<LuceneWork>();
    queue.add( luceneWork );
    return queue;
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

   @Override
   public LuceneWork reduce(Object reducedKey, Iterator<LuceneWork> iter) {
      try {
         while (iter.hasNext()) {
            LuceneWork work = iter.next();
            defaultBatchBackend.enqueueAsyncWork(work);
         }
      } catch (InterruptedException e) {
         Thread.currentThread().interrupt();
      }
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

  private static final Logger log = LoggerFactory.make();
 
  public void handle(ErrorContext context) {
   
    final List<LuceneWork> failingOperations = context.getFailingOperations();
    final LuceneWork primaryFailure = context.getOperationAtFault();
    final Throwable exceptionThatOccurred = context.getThrowable();
   
    final StringBuilder errorMsg = new StringBuilder();
   
    if ( exceptionThatOccurred != null ) {
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

     */
    final int size = luceneQueue.size();
    List<Integer> toDelete = new ArrayList<Integer>( size );
    Map<DuplicatableWork, Integer> workByPosition = new HashMap<DuplicatableWork, Integer>( size );
    for ( int index = 0 ; index < size; index++ ) {
      LuceneWork work = luceneQueue.get( index );
      if ( work instanceof AddLuceneWork ) {
        DuplicatableWork dupWork = new DuplicatableWork( work );
        final Integer oldIndex = workByPosition.get( dupWork );
        if ( oldIndex != null ) {
          toDelete.add(oldIndex);
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

  private static final Log log = LoggerFactory.make();
 
  public void handle(ErrorContext context) {
   
    final List<LuceneWork> failingOperations = context.getFailingOperations();
    final LuceneWork primaryFailure = context.getOperationAtFault();
    final Throwable exceptionThatOccurred = context.getThrowable();
   
    final StringBuilder errorMsg = new StringBuilder();
   
    if ( exceptionThatOccurred != null ) {
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

   private List<LuceneWork> transformKeysToStrings(final List<LuceneWork> luceneWorks) {
      final KeyTransformationHandler keyTransformationHandler = queryInterceptor.getKeyTransformationHandler();
      ArrayList<LuceneWork> transformedWorks = new ArrayList<LuceneWork>(luceneWorks.size());
      for (LuceneWork lw : luceneWorks) {
         LuceneWork transformedLuceneWork = lw
               .getWorkDelegate(LuceneWorkTransformationVisitor.INSTANCE)
               .cloneOverridingIdString(lw, keyTransformationHandler);
         transformedWorks.add(transformedLuceneWork);
      }
      return transformedWorks;
View Full Code Here

Examples of org.hibernate.search.backend.LuceneWork

     */
    final int size = luceneQueue.size();
    List<Integer> toDelete = new ArrayList<Integer>( size );
    Map<DuplicatableWork, Integer> workByPosition = new HashMap<DuplicatableWork, Integer>( size );
    for ( int index = 0 ; index < size; index++ ) {
      LuceneWork work = luceneQueue.get( index );
      if ( work instanceof AddLuceneWork ) {
        DuplicatableWork dupWork = new DuplicatableWork( work );
        final Integer oldIndex = workByPosition.get( dupWork );
        if ( oldIndex != null ) {
          toDelete.add(oldIndex);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.