Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for Stores (0.07 sec)

  1. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

     * This factory maintains a registry of data store implementations and provides methods
     * to register, retrieve, and discover available data stores.
     *
     * <p>Data stores are registered by name and class name, allowing flexible lookup.
     * The factory also supports dynamic discovery of data store plugins by scanning
     * JAR files for data store configurations.</p>
     *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                return;
            }
            clickLogQueue.add(clickLog);
        }
    
        /**
         * Stores search logs from the queue.
         */
        public void storeSearchLog() {
            storeSearchLogFromQueue();
            storeClickLogFromQueue();
        }
    
        /**
         * Stores click logs from the queue.
         */
        protected void storeClickLogFromQueue() {
            if (!clickLogQueue.isEmpty()) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        /**
         * Gets the suggester instance.
         *
         * @return The suggester instance.
         */
        public Suggester suggester() {
            return suggester;
        }
    
        /**
         * Stores search logs in the suggest index.
         */
        public void storeSearchLog() {
            final SearchLogBhv searchLogBhv = ComponentUtil.getComponent(SearchLogBhv.class);
    
            searchLogBhv.selectBulk(cb -> {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

            }
            return OptionalEntity.empty();
        }
    
        /**
         * Stores or updates a dictionary file in the ConfigSync storage.
         * This method checks for concurrent modifications by comparing timestamps
         * and uploads the file content to the ConfigSync API.
         *
         * @param dictFile the dictionary file metadata to store
         * @param file the actual file containing the dictionary content
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Stores a document in the index after processing and validation.
         * Handles document transformation, field addition, and batched indexing.
         *
         * @param paramMap the data store parameters
         * @param dataMap the document data to store
         * @throws DataStoreException if required fields are missing or other errors occur
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java

         */
        public DataServiceImpl() {
            // Default constructor
        }
    
        /**
         * Stores an access result in the data store.
         *
         * @param accessResult the access result to store
         * @throws CrawlerSystemException if the access result is null or already exists
         */
        @Override
        public void store(final AccessResultImpl<Long> accessResult) {
            if (accessResult == null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

    import org.apache.commons.lang3.StringUtils;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.dict.DictionaryItem;
    
    /**
     * Represents an item in a stopwords dictionary.
     * This class stores a stopword and tracks its updated value.
     */
    public class StopwordsItem extends DictionaryItem {
        /** The original stopword. */
        private final String input;
    
        /** The new stopword, if updated. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java

        public int read(final byte[] b, final int off, final int len) throws IOException {
            return inputStream.read(b, off, len);
        }
    
        /**
         * Reads some number of bytes from the input stream and stores them into the buffer array b.
         *
         * @param b the buffer into which the data is read
         * @return the total number of bytes read into the buffer, or -1 if there is no more data
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

                cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger());
            });
        }
    
        /**
         * Stores a scheduled job.
         * @param scheduledJob The scheduled job to store.
         */
        public void store(final ScheduledJob scheduledJob) {
            scheduledJobBhv.insertOrUpdate(scheduledJob, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                }
                logger.warn("Failed to store failure url: url={}", urlQueue != null ? urlQueue.getUrl() : "unknown", e);
            }
    
            super.processCrawlingException(objs);
            if (urlQueue != null) {
                ComponentUtil.getCrawlerStatsHelper().record(urlQueue, StatsAction.ACCESS_EXCEPTION);
            }
        }
    
        /**
         * Stores a failure URL with error information for later analysis.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top