Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDocumentListByDocIds (0.09 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                queryHelper.processSearchPreference(builder, userBean, docId);
                return true;
            });
    
        }
    
        public List<Map<String, Object>> getDocumentListByDocIds(final String[] docIds, final String[] fields,
                final OptionalThing<FessUserBean> userBean, final SearchRequestType searchRequestType) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

                final FessConfig fessConfig = ComponentUtil.getFessConfig();
                try {
                    final UpdateRequest[] updateRequests =
                            searchHelper.getDocumentListByDocIds(clickCountMap.keySet().toArray(new String[clickCountMap.size()]),
                                    new String[] { fessConfig.getIndexFieldDocId(), fessConfig.getIndexFieldLang() },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                }
    
                final String[] docIds = userInfoHelper.getResultDocIds(queryId);
                final List<Map<String, Object>> docList = searchHelper.getDocumentListByDocIds(docIds, new String[] {
                        fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldDocId(), fessConfig.getIndexFieldFavoriteCount() },
                        OptionalThing.empty(), SearchRequestType.JSON);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top