- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,153 for Search (0.09 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java
/** * Form for uploading search request files to the Fess search engine. * This form is used in the admin interface to upload search request configuration files * that define search behaviors and request handling. */ public class UploadForm { /** * The multipart file containing the search request configurations to be uploaded. * This file should contain search request definitions and configurations. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
/** Array of fields to be included in standard search response */ protected String[] responseFields; /** Array of fields to be included in scroll search response */ protected String[] scrollResponseFields; /** Array of fields to be included in cache search response */ protected String[] cacheResponseFields; /** Array of fields that can be highlighted in search results */ protected String[] highlightedFields;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** * Default label value to use when no specific label is selected. * This affects which documents are included in search results by default. */ @Size(max = 1000) public String defaultLabelValue; /** * Default sort order for search results. * Defines how search results are ordered when no specific sort is requested. */ @Size(max = 1000) public String defaultSortValue;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.lucene.search.TotalHits.Relation; import org.codelibs.fess.util.FacetResponse; /** * Represents the result of a search operation in the rank fusion system. * * This class encapsulates all the information returned from a search query, * including the list of matching documents, total record count, query execution
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java
import org.codelibs.fess.util.ComponentUtil; /** * Base class for search request body objects in admin API. * Provides common pagination parameters for search operations. */ public class BaseSearchBody { /** The page size for search results. */ public Integer size = ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); /** The page number for search results. */ public Integer page = Constants.DEFAULT_ADMIN_PAGE_NUMBER;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
import org.lastaflute.web.util.LaRequestUtil; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.action.search.SearchResponse; import org.opensearch.common.document.DocumentField; import org.opensearch.search.SearchHit; import org.opensearch.search.SearchHits; import org.opensearch.search.aggregations.Aggregations; import org.opensearch.search.fetch.subphase.highlight.HighlightField; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* including CRUD operations and search functionality. */ public DuplicateHostService() { super(); } /** * Retrieves a paginated list of duplicate host configurations based on search criteria. * * <p>This method performs a paginated search through all duplicate host configurations, * applying any search filters specified in the pager. The results are sorted
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/AggregateLogJob.java
import org.apache.logging.log4j.Logger; import org.codelibs.fess.helper.SearchLogHelper; import org.codelibs.fess.util.ComponentUtil; /** * Job for aggregating and storing search logs. * This job processes search logs and stores them in the search log repository. */ public class AggregateLogJob { private static final Logger logger = LogManager.getLogger(AggregateLogJob.class); /** * Default constructor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
/** * Helper class for handling search operations in Fess. * * This class provides comprehensive search functionality including document search, * scroll search, and bulk operations. It handles search request parameter processing, * query building, response formatting, and search log management. * * Key features: * - Document search with pagination and faceting * - Scroll search for large result sets
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
private int currentPageNumber; /** Search parameter: elevate word ID */ public String id; /** Search parameter: suggest word */ public String suggestWord; /** Search parameter: boost value */ public String boost; /** Search parameter: created by user */ public String createdBy; /** Search parameter: creation time */ public String createdTime;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0)