- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 278 for document (0.04 sec)
-
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
logger.debug("The number of an added document is {}.", documentSize.get()); } } /** * Processes a document through the ingest pipeline. * Applies all available ingesters to transform the document data. * * @param paramMap the data store parameters * @param dataMap the document data to process * @return the processed document data */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
return null; } /** * Processes a document through the ingest pipeline if an ingest factory is available. * Applies all configured ingesters to transform and enrich the document data. * * @param accessResult the access result containing document metadata * @param map the document data map to process * @return the processed document map after applying all ingesters */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
* reader.setScrollSize(1000); // Set the scroll size * reader.setLimitOfDocumentSize(1024 * 1024); // Limit document size to 1MB * reader.setQuery(QueryBuilders.termQuery("field", "value")); // Set a query * * Map<String, Object> document; * while ((document = reader.read()) != null) { * // Process the document * System.out.println(document); * } * * reader.close(); // Close the reader to release resources * } * </pre> */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
}); return asEditHtml(); } /** * Displays the form for editing an existing document. * * @param form the edit form containing document ID * @return HTML response for the document edit form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java
} /** * The search query used to find the document. * Optional field with maximum length of 1000 characters. */ @Size(max = 1000) public String q; /** * The document ID of the document to delete. * Required field for identifying the specific document. */ @Required public String docId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocList.java
import java.util.Arrays; import java.util.Map; /** * A specialized ArrayList for storing document data with additional metadata. * This class extends ArrayList to hold document maps while tracking content size * and processing time metrics. It's used throughout the Fess search system to * manage collections of search results and crawled documents. * */ public class DocList extends ArrayList<Map<String, Object>> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
} } /** * Deletes old documents that have the same URL but different document IDs * as the documents in the provided list. This prevents duplicate documents * from accumulating in the index. * * @param searchEngineClient the search engine client to use for deletion * @param docList the list of new documents to check against
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
// ========= /** Search engine client for document operations */ @Resource protected SearchEngineClient searchEngineClient; // =================================================================================== // Search Execute // /** * Performs bulk document operations (index multiple documents). * Validates document fields and adds default values where necessary. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
return null; // ignore } /** * Retrieves a specific document by ID. * * @param id the document ID to retrieve * @return JSON response containing the document */ // GET /api/admin/searchlist/doc/{doc_id} @Execute public JsonResponse<ApiResult> get$doc(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java
* This interface provides methods for storing documents, tracking processing metrics, * and committing changes to the search index. */ public interface IndexUpdateCallback { /** * Stores a document in the search index with the specified parameters and data. * * @param paramMap the data store parameters containing configuration and metadata * @param dataMap the document data to be indexed as key-value pairs */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)