Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getIndexFieldConfigId (0.43 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

            }
    
            Map<String, Object> doc = null;
            try {
                doc = searchHelper
                        .getDocumentByDocId(form.docId, new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldConfigId() },
                                getUserBean())
                        .orElse(null);
            } catch (final Exception e) {
                logger.warn("Failed to request: {}", form.docId, e);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

            final BulkResponse response = searchEngineClient.addAll(fessConfig.getIndexDocumentUpdateIndex(), docList, (doc, builder) -> {
                if (doc.get(fessConfig.getIndexFieldConfigId()) instanceof final String configId) {
                    crawlingConfigHelper.getPipeline(configId).ifPresent(s -> builder.setPipeline(s));
                }
            });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            final Map<String, Object> defaultDataMap = new HashMap<>();
    
            // cid
            final String configId = config.getConfigId();
            if (configId != null) {
                defaultDataMap.put(fessConfig.getIndexFieldConfigId(), configId);
            }
            //  expires
            if (documentExpires != null) {
                defaultDataMap.put(fessConfig.getIndexFieldExpires(), documentExpires);
            }
            // segment
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top