Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getIndicesForAlias (0.22 sec)

  1. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

    import org.opensearch.transport.client.Client;
    
    /**
     * Test class for refactoring changes made to Suggester class.
     *
     * Tests cover:
     * - Index alias helper method (getIndicesForAlias)
     * - Edge cases for switchIndex with EXPECTED_INDEX_COUNT
     * - Index lifecycle with refactored methods
     */
    public class SuggesterRefactoringTest {
        static OpenSearchRunner runner;
        static Client client;
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/Suggester.java

        }
    
        /**
         * Creates a new index and replaces the current update alias with the new index.
         */
        public void createNextIndex() {
            try {
                final List<String> prevIndices = getIndicesForAlias(getUpdateAlias(index));
    
                final String mappingSource = getDefaultMappings();
                final String settingsSource = getDefaultIndexSettings();
                final String indexName = createIndexName(index);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 21.6K bytes
    - Viewed (3)
Back to top