Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getCrawlingThreadCount (0.09 sec)

  1. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            // Minimal FessConfig
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public int getCrawlingThreadCount() {
                    return 1; // Reduced from 2 to minimize thread overhead
                }
    
                @Override
                public String getIndexFieldConfigId() {
                    return "config_id";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.incrementalCrawling = fessConfig.isIncrementalCrawling() ? Constants.TRUE : Constants.FALSE;
            form.dayForCleanup = fessConfig.getDayForCleanup();
            form.crawlingThreadCount = fessConfig.getCrawlingThreadCount();
            form.searchLog = fessConfig.isSearchLog() ? Constants.TRUE : Constants.FALSE;
            form.userInfo = fessConfig.isUserInfo() ? Constants.TRUE : Constants.FALSE;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

         */
        protected void doCrawl(final String sessionId, final List<WebConfig> webConfigList, final List<FileConfig> fileConfigList) {
            final int multiprocessCrawlingCount = ComponentUtil.getFessConfig().getCrawlingThreadCount();
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            ComponentUtil.getFessConfig();
            final ProtocolHelper protocolHelper = ComponentUtil.getProtocolHelper();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         */
        protected void doCrawl(final String sessionId, final List<DataConfig> configList) {
            final int multiprocessCrawlingCount = ComponentUtil.getFessConfig().getCrawlingThreadCount();
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final long startTime = systemHelper.getCurrentTimeAsLong();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setCrawlingThreadCount(final int value) {
            setSystemPropertyAsInt(Constants.CRAWLING_THREAD_COUNT_PROPERTY, value);
        }
    
        default int getCrawlingThreadCount() {
            return getSystemPropertyAsInt(Constants.CRAWLING_THREAD_COUNT_PROPERTY, 5);
        }
    
        default void setSearchLog(final boolean value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top