Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Commit (0.15 sec)

  1. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                                dataConfig.getConfigId() + ":" + dataConfig.getName(), e);
                    } finally {
                        indexUpdateCallback.commit();
                        deleteOldDocs();
                    }
                }
            }
    
            private void deleteOldDocs() {
                if (Constants.FALSE.equals(initParamMap.getAsString(DELETE_OLD_DOCS))) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/help.jsp

    		The available sort field are "created", "content_length" and
    		"last_modified", and they are customizable.
    	</dd>
    	<dt>AND</dt>
    	<dd>
    		AND operator is the default conjunction operator. You can omit it from
    		a query. AND operator matches documents where both terms exist
    		anywhere in the text of a single document.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR</dt>
    	<dd>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                        }
                    } else {
                        itemList.add(item);
                    }
                }
                if (updater != null) {
                    final StemmerOverrideItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                stemmerOverrideItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                        } else {
                            itemList.add(item);
                        }
                    }
                }
                if (updater != null) {
                    final ProtwordsItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                protwordsItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

    public interface IndexUpdateCallback {
    
        void store(DataStoreParams paramMap, Map<String, Object> dataMap);
    
        long getDocumentSize();
    
        long getExecuteTime();
    
        void commit();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 924 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                        deleteDocuments();
                    }
                }
            }
            return true;
        }
    
        @Override
        public void commit() {
            try {
                if (logger.isDebugEnabled()) {
                    logger.debug("Shutting down thread executor.");
                }
                executor.shutdown();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                                itemList.add(item);
                            }
                        }
                    }
                }
                if (updater != null) {
                    final SynonymItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                synonymItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

                    logger.warn("Failed to process Ingest[{}]", ingester.getClass().getSimpleName(), e);
                }
            }
            return target;
        }
    
        @Override
        public void commit() {
            synchronized (docList) {
                if (!docList.isEmpty()) {
                    final IndexingHelper indexingHelper = ComponentUtil.getIndexingHelper();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java

                        }
                    } else {
                        itemList.add(item);
                    }
                }
                if (updater != null) {
                    final KuromojiItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                kuromojiItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                        } else {
                            itemList.add(item);
                        }
                    }
                }
                if (updater != null) {
                    final StopwordsItem item = updater.commit();
                    if (item != null) {
                        itemList.add(item);
                    }
                }
                stopwordsItemList = itemList;
            } catch (final IOException e) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top