Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for SuggestIndexer (0.52 seconds)

  1. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

         * @return This SuggestIndexer instance.
         */
        public SuggestIndexer setIndexName(final String index) {
            this.index = index;
            return this;
        }
    
        /**
         * Sets the supported fields.
         * @param supportedFields The supported fields.
         * @return This SuggestIndexer instance.
         */
        public SuggestIndexer setSupportedFields(final String[] supportedFields) {
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 20.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/Suggester.java

         */
        public Normalizer getNormalizer() {
            return normalizer;
        }
    
        /**
         * Creates a default SuggestIndexer instance.
         * @return A SuggestIndexer instance.
         */
        protected SuggestIndexer createDefaultIndexer() {
            return new SuggestIndexer(client, getUpdateAlias(index), readingConverter, contentsReadingConverter, normalizer, analyzer,
                    suggestSettings, threadPool);
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 21.6K bytes
    - Click Count (3)
  3. CLAUDE.md

    Main operations: `suggest()`, `popularWords()`, `indexer()`, `createIndexIfNothing()`, `createNextIndex()`, `switchIndex()`, `removeDisableIndices()`
    
    ### SuggestIndexer (Indexing Engine)
    Location: `src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java`
    
    Handles all indexing operations, content parsing, and word management (bad words, elevate words).
    
    ### SuggestSettings (Configuration)
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Thu Mar 12 03:39:53 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerErrorHandlingTest.java

        @Test
        public void test_setNullIndexName() throws Exception {
            SuggestIndexer indexer = suggester.indexer();
            // Setting null index name should be allowed (though may cause issues later)
            indexer.setIndexName(null);
        }
    
        @Test
        public void test_setNullSupportedFields() throws Exception {
            SuggestIndexer indexer = suggester.indexer();
            // Setting null fields should be allowed
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/suggest/index/operations/IndexingOperations.java

    /**
     * Internal operations class for core indexing functionality.
     * Handles indexing of SuggestItem objects with bad word filtering.
     *
     * <p>This class is package-private and intended for internal use by SuggestIndexer.
     */
    public class IndexingOperations {
    
        private static final Logger logger = LogManager.getLogger(IndexingOperations.class);
    
        private final Client client;
        private final SuggestSettings settings;
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/suggest/index/operations/WordManagementOperations.java

    /**
     * Internal operations class for bad word and elevate word management.
     * Handles adding, deleting, and restoring special words.
     *
     * <p>This class is package-private and intended for internal use by SuggestIndexer.
     */
    public class WordManagementOperations {
    
        private static final Logger logger = LogManager.getLogger(WordManagementOperations.class);
    
        private final SuggestSettings settings;
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/suggest/index/operations/DeletionOperations.java

    /**
     * Internal operations class for deletion functionality.
     * Handles deletion of suggest items by ID, query, or kind.
     *
     * <p>This class is package-private and intended for internal use by SuggestIndexer.
     */
    public class DeletionOperations {
    
        private static final Logger logger = LogManager.getLogger(DeletionOperations.class);
    
        /** Default page size for scroll operations. */
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/suggest/index/operations/ContentIndexingOperations.java

    /**
     * Internal operations class for content-based indexing functionality.
     * Handles indexing from query logs, documents, and search words.
     *
     * <p>This class is package-private and intended for internal use by SuggestIndexer.
     */
    public class ContentIndexingOperations {
    
        private static final Logger logger = LogManager.getLogger(ContentIndexingOperations.class);
    
        private final Client client;
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 21.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java

            assertTrue(remainingWordsCount < totalWordsCount);
            assertTrue(remainingWordsCount > 0);
        }
    
        @Test
        public void test_setters() throws Exception {
            SuggestIndexer indexer = suggester.indexer();
    
            assertNotNull(indexer.setIndexName("test-index"));
            assertNotNull(indexer.setSupportedFields(new String[] { "field1", "field2" }));
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sat Mar 14 02:35:38 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  10. README.md

    │   │   ├── suggest/                # Suggestion requests
    │   │   └── popularwords/           # Popular words requests
    │   ├── index/                      # Indexing functionality
    │   │   ├── SuggestIndexer.java     # Main indexing API
    │   │   ├── contents/               # Content parsers and readers
    │   │   └── writer/                 # Index writing strategies
    │   ├── converter/                  # Text conversion utilities
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Aug 31 03:31:14 GMT 2025
    - 12.1K bytes
    - Click Count (1)
Back to Top