- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getQueueIndex (0.09 sec)
-
src/main/java/org/codelibs/fess/crawler/util/FessCrawlerConfig.java
super(); } /** * Gets the name of the queue index for the crawler. * * @return the queue index name */ @Override public String getQueueIndex() { return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".queue"; } /** * Gets the name of the data index for the crawler. * * @return the data index name
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchCrawlerConfig.java
* Number of replicas for the filter index. */ protected int filterReplicas = 1; /** * Returns the queue index name. * @return The queue index name. */ public String getQueueIndex() { return queueIndex; } /** * Sets the queue index name. * @param queueIndex The queue index name. */ public void setQueueIndex(final String queueIndex) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
* @param crawlerConfig The crawler configuration. */ public OpenSearchUrlQueueService(final OpenSearchCrawlerConfig crawlerConfig) { index = crawlerConfig.getQueueIndex(); setNumberOfShards(crawlerConfig.getQueueShards()); setNumberOfReplicas(crawlerConfig.getQueueReplicas()); } /** * Creates a new instance of OpenSearchUrlQueueService.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (0)