- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 76 for Indexer (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
suggester.indexer().addBadWord(word, apply); } refresh(); } /** * Adds a bad word to the suggest index. * * @param badWord The bad word to add. * @param apply true to apply the changes immediately. */ public void addBadWord(final String badWord, final boolean apply) { suggester.indexer().addBadWord(badWord, apply);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/resources/mail/crawler.dfmail
--- Web/FileSystem Indexer --- Exec Time: /*pmb.webFsIndexExecTime:orElse('-')*/ ms Num of Doc: /*pmb.webFsIndexSize:orElse('-')*/ docs --- Data Store Crawler --- Start Time: /*pmb.dataCrawlStartTime:orElse('-')*/ End Time: /*pmb.dataCrawlEndTime:orElse('-')*/ Exec Time: /*pmb.dataCrawlExecTime:orElse('-')*/ ms --- Data Store Indexer --- Exec Time: /*pmb.dataIndexExecTime:orElse('-')*/ ms
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Jan 15 22:05:20 UTC 2020 - 1K bytes - Viewed (0) -
src/main/resources/fess_config.properties
indexer.webfs.commit.margin.time=5000 # Maximum number of empty lists for webfs in the indexer. indexer.webfs.max.empty.list.count=3600 # Update interval (ms) for webfs in the indexer. indexer.webfs.update.interval=10000 # Maximum document cache size for webfs in the indexer. indexer.webfs.max.document.cache.size=10 # Maximum document request size (bytes) for webfs in the indexer.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/crawler/resources/app.xml
</component> <component name="indexUpdater" class="org.codelibs.fess.indexer.IndexUpdater" instance="prototype"> <!-- <property name="maxDocumentCacheSize">5</property> <property name="unprocessedDocumentSize">100</property> <property name="threadDump">false</property> <postConstruct name="addBoostDocumentRule"> <arg> <component class="org.codelibs.fess.indexer.BoostDocumentRule">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. 5000 */ String INDEXER_WEBFS_COMMIT_MARGIN_TIME = "indexer.webfs.commit.margin.time"; /** The key of the configuration. e.g. 3600 */ String INDEXER_WEBFS_MAX_EMPTY_LIST_COUNT = "indexer.webfs.max.empty.list.count"; /** The key of the configuration. e.g. 10000 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
} } private static class MockSuggester { private MockSuggestIndexer indexer = new MockSuggestIndexer(); private MockSuggestSettings settings = new MockSuggestSettings(); public MockSuggestIndexer indexer() { return indexer; } public MockSuggestSettings settings() { return settings; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.indexer; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.Constants; import org.codelibs.fess.exception.JobProcessingException; import org.codelibs.fess.script.AbstractScriptEngine;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"suggest_indexer"}}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
import org.codelibs.fess.crawler.service.impl.OpenSearchUrlFilterService; import org.codelibs.fess.crawler.service.impl.OpenSearchUrlQueueService; import org.codelibs.fess.indexer.IndexUpdater; import org.codelibs.fess.opensearch.config.exbhv.BoostDocumentRuleBhv; import org.codelibs.fess.opensearch.config.exentity.BoostDocumentRule;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
((TestDataService) dataService).setAccessResultList(new TestOpenSearchResultList()); // Start indexer in separate thread indexUpdater.start(); // Let it run briefly ThreadUtil.sleep(100); // Stop the indexer indexUpdater.setFinishCrawling(true); // Wait for completion with longer timeout indexUpdater.join(3000);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0)