Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for getIndexFieldId (0.15 sec)

  1. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            }
    
            final IndexingHelper indexingHelper = ComponentUtil.getIndexingHelper();
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
            dataMap.put(fessConfig.getIndexFieldId(), crawlingInfoHelper.generateId(dataMap));
    
            final String url = dataMap.get(fessConfig.getIndexFieldUrl()).toString();
    
            if (fessConfig.getIndexerClickCountEnabledAsBoolean()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String thumbnailId = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldId(), String.class);
            final Tuple3<String, String, String> task = new Tuple3<>(getName(), thumbnailId, path);
            if (logger.isDebugEnabled()) {
                logger.debug("Create thumbnail task: {}", task);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                            if (Float.isFinite(score)) {
                                docMap.put(Constants.SCORE, score);
                            }
                        }
    
                        docMap.put(fessConfig.getIndexFieldId(), hit.getId());
                        docMap.put(fessConfig.getIndexFieldVersion(), hit.getVersion());
                        docMap.put(fessConfig.getIndexFieldSeqNo(), hit.getSeqNo());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                putResultDataBody(dataMap, fessConfig.getIndexFieldLang(), fessConfig.getCrawlerDocumentFileDefaultLang());
            }
            // id
            putResultDataBody(dataMap, fessConfig.getIndexFieldId(), crawlingInfoHelper.generateId(dataMap));
            // parentId
            String parentUrl = responseData.getParentUrl();
            if (StringUtil.isNotBlank(parentUrl)) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            final String scoreField = fessConfig.getRankFusionScoreField();
            final Map<String, Map<String, Object>> scoreDocMap = new HashMap<>();
            final String idField = fessConfig.getIndexFieldId();
            final Set<Object> mainIdSet = new HashSet<>();
            for (int i = 0; i < results.length; i++) {
                final List<Map<String, Object>> docList = results[i].getDocumentList();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                                    OptionalThing.of(FessUserBean.empty()), SearchRequestType.ADMIN_SEARCH).stream().map(doc -> {
                                        final String id = DocumentUtil.getValue(doc, fessConfig.getIndexFieldId(), String.class);
                                        final String docId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldDocId(), String.class);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            }
    
                            final String id = DocumentUtil.getValue(doc, fessConfig.getIndexFieldId(), String.class);
                            searchHelper.update(id, builder -> {
                                final Script script = ComponentUtil.getLanguageHelper().createScript(doc,
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    stream(crawlingConfig.getVirtualHosts()).get(stream -> stream.filter(StringUtil::isNotBlank).collect(Collectors.toList())));
            // id
            putResultDataBody(dataMap, fessConfig.getIndexFieldId(), crawlingInfoHelper.generateId(dataMap));
            // parentId
            String parentUrl = responseData.getParentUrl();
            if (StringUtil.isNotBlank(parentUrl)) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'index.field.id'. <br>
         * The value is, e.g. _id <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexFieldId();
    
        /**
         * Get the value for the key 'index.field.version'. <br>
         * The value is, e.g. _version <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top