Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for indexing (0.25 sec)

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

    import org.codelibs.fess.util.DocumentUtil;
    import org.codelibs.fess.util.MemoryUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Implementation of IndexUpdateCallback for handling document indexing operations.
     * This class manages the process of updating the search index with documents from
     * data stores, including bulk operations, document transformation, and error handling.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/Constants.java

     * This class provides constants for system configuration, crawling and indexing defaults, user agent strings,
     * status values, field names, date/time formats, authentication types, and various reserved words and patterns.
     *
     * <p>Key constant categories include:</p>
     * <ul>
     * <li>System configuration property keys</li>
     * <li>Default values for crawling and indexing operations</li>
     * <li>User agent strings and patterns for web crawling</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        protected String[] sortFields;
    
        /** Set of fields that are allowed in API responses */
        protected Set<String> apiResponseFieldSet;
    
        /** Set of fields that are not analyzed during indexing */
        protected Set<String> notAnalyzedFieldSet;
    
        /** List of additional default fields with their boost values */
        protected List<Pair<String, Float>> additionalDefaultList = new ArrayList<>();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

     * <li>Transforms document data using appropriate transformers</li>
     * <li>Applies document boosting rules and click/favorite count enhancements</li>
     * <li>Sends processed documents to the search engine for indexing</li>
     * <li>Manages cleanup of processed crawler session data</li>
     * </ul>
     *
     * <p>The updater runs continuously until crawling is finished and all documents are processed.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

    /**
     * Helper class for managing file type mappings based on MIME types.
     * This class provides functionality to map MIME types to file types and
     * retrieve appropriate file type classifications for documents during indexing.
     *
     * The mappings are loaded from configuration and can be dynamically modified
     * at runtime. When a MIME type is not found in the mapping, a default value
     * is returned.
     */
    public class FileTypeHelper {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/SearchLogEvent.java

         *
         * @return The version number, or null if not versioned
         */
        Long getVersionNo();
    
        /**
         * Converts this search log event to a source map for indexing or logging.
         *
         * @return Map representation of the event data
         */
        Map<String, Object> toSource();
    
        /**
         * Gets the type of this search log event.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message.properties

    errors.failed_to_change_password=Failed to change your password.
    errors.unknown_version_for_upgrade=Unknown version for upgrade.
    errors.failed_to_upgrade_from=Failed to upgrade from {0}.
    errors.failed_to_reindex=Failed to start re-indexing from {0} to {1}.
    errors.failed_to_read_request_file=Failed to read a request file: {0}
    errors.invalid_header_for_request_file=Invalid header line: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_en.properties

    errors.failed_to_change_password=Failed to change your password.
    errors.unknown_version_for_upgrade=Unknown version for upgrade.
    errors.failed_to_upgrade_from=Failed to upgrade from {0}.
    errors.failed_to_reindex=Failed to start re-indexing from {0} to {1}.
    errors.failed_to_read_request_file=Failed to read a request file: {0}
    errors.invalid_header_for_request_file=Invalid header line: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin document management.
     * Provides RESTful API endpoints for bulk document operations in the Fess search engine.
     * Supports indexing multiple documents with automatic field validation and default value assignment.
     */
    public class ApiAdminDocumentsAction extends FessApiAdminAction {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ingest/Ingester.java

     * before they are indexed. Ingesters can be used to modify document content,
     * extract additional metadata, or perform other transformations during the
     * indexing process.
     *
     * Ingesters are processed in priority order, with lower numbers having higher priority.
     */
    public abstract class Ingester {
    
        /** Priority of this ingester (lower numbers = higher priority) */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top