Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deleteIndex (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    }
                }
            }
            for (final String index : crawlerIndices) {
                if (client.existsIndex(index)) {
                    if (client.deleteIndex(index)) {
                        logger.warn("Deleted {}.", index);
                    } else {
                        logger.warn("Failed to delete {}.", index);
                    }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                }
            } catch (final Exception e) {
                logger.warn("{} is not found.", indexConfigFile, e);
            }
    
            return false;
        }
    
        public boolean deleteIndex(final String indexName) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            try {
                final AcknowledgedResponse response =
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
Back to top