- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for doc_id (0.04 sec)
-
SearchApiManager.java
null) { L611: throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST, "docId is empty."); L612: } L613: final String docId = docIdObj.toString(); L614: final String queryId = request.getParameter("queryId"); L615: L616: final String[] docIds = userInfoHelper.getResultDocIds(URLDecoder.decode(queryId, Constants.UTF_8)); L617: if (docIds == null) { L618: throw new WebApiException(HttpServletResponse.SC_BAD_REQUEST,...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K bytes -
fess_config.properties
al_password=admin L298: L299:# field names L300:index.field.favorite_count=favorite_count L301:index.field.click_count=click_count L302:index.field.config_id=config_id L303:index.field.expires=expires L304:index.field.url=url L305:index.field.doc_id=doc_id L306:index.field.id=_id L307:index.field.version=_version L308:index.field.seq_no=_seq_no L309:index.field.primary_term=_primary_term L310:index.field.lang=lang L311:index.field.has_cache=has_cache L312:index.field.last_modified=last_modified ...github.com/codelibs/fess/src/main/resources/fes...Tue Oct 01 14:13:38 UTC 2024 30.9K bytes -
FessConfig.java
String INDEX_FIELD_EXPIRES = "index.field.expires"; L567: L568: /** The key of the configuration. e.g. url */ L569: String INDEX_FIELD_URL = "index.field.url"; L570: L571: /** The key of the configuration. e.g. doc_id */ L572: String INDEX_FIELD_doc_id = "index.field.doc_id"; L573: L574: /** The key of the configuration. e.g. _id */ L575: String INDEX_FIELD_ID = "index.field.id"; L576: L577: /** The key of the configuration. e.g. _version */ L578: String INDEX_FIELD_VERSION =...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
SearchHelper.java
builder.setQuery(boolQuery); L307: builder.setFetchSource(fields, null); L308: queryHelper.processSearchPreference(builder, userBean, docId); L309: return true; L310: }); L311: L312: } L313: L314: public List<Map<String, Object>> getDocumentListByDocIds(final String[] docIds, final String[] fields, L315: final OptionalThing<FessUserBean> userBean, final SearchRequestType searchRequestType) { L316: final FessConfig fessConfig...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 19.1K bytes -
ThumbnailManager.java
fessConfig = ComponentUtil.getFessConfig(); L299: final String docid = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldDocId(), String.class); L300: return getImageFilename(docid); L301: } L302: L303: protected String getImageFilename(final String docid) { L304: final StringBuilder buf = new StringBuilder(50); L305: for (int i = 0; i < docid.length(); i += splitSize) { L306: int hash = docid.substring(i).hashCode() % splitHashSize; L307: if (hash...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 21.5K bytes