Package org.apache.roller.weblogger.business.search

Examples of org.apache.roller.weblogger.business.search.IndexManager.addEntryReIndexOperation()


           
            // if we've got entries to reindex then do so
            if (!reindexList.isEmpty()) {
                IndexManager imgr = WebloggerFactory.getWeblogger().getIndexManager();
                for (WeblogEntry entry : reindexList) {
                    imgr.addEntryReIndexOperation(entry);
                }
            }           
           
            addMessage("commentManagement.updateSuccess");
           
View Full Code Here


               
                // trigger a cache invalidation
                CacheManager.invalidate(entry);
               
                // trigger search index on entry
                searchMgr.addEntryReIndexOperation(entry);
            }
           
        } catch (WebloggerException e) {
            log.error("Error getting scheduled entries", e);
        } catch(Exception e) {
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.