- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for favorites (1.26 sec)
-
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
import org.dbflute.cbean.result.ListResultBean; import jakarta.annotation.Resource; /** * Service class for managing favorite log operations. * Provides functionality to add URLs to user favorites and retrieve favorite URL lists. * This service handles the persistence and retrieval of favorite log entries in the search system. */ public class FavoriteLogService { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/webapp/js/search.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
/** Search API format. */ SEARCH, /** Label API format. */ LABEL, /** Popular word API format. */ POPULARWORD, /** Favorite API format. */ FAVORITE, /** Favorites API format. */ FAVORITES, /** Ping API format. */ PING, /** Scroll API format. */ SCROLL, /** Suggest API format. */ SUGGEST,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.6K bytes - Viewed (0) -
src/main/resources/fess_label_es.properties
labels.search_result_sort_click_count_asc=Clics (asc) labels.search_result_sort_click_count_desc=Clics (desc) labels.search_result_sort_favorite_count_asc=Favoritos (asc) labels.search_result_sort_favorite_count_desc=Favoritos (desc) labels.search_result_sort_multiple=Múltiple labels.search_result_size={0} bytes labels.search_result_created=Fecha de registro: labels.search_result_last_modified=Última modificación:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchLogEvent.java
* * This interface defines the contract for search log event objects that can be * written to log files or stored in the search index. Implementations include * search logs, click logs, favorite logs, and user information logs. */ public interface SearchLogEvent { /** * Gets the unique identifier for this search log event. * * @return The event ID */ String getId();
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/ds/callback/IndexUpdateCallbackImpl.java
logger.debug("Click Count: {}, url: {}", count, url); } } /** * Adds favorite count information to the document. * * @param doc the document to update * @param url the URL to get favorite count for * @param favoriteCountField the field name to store favorite count */
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
} } } /** * Adds a favorite count field to the document based on user favorite data. * The favorite count represents how many users have marked this document as a favorite. * * @param map the document data map to add the favorite count to */ protected void addFavoriteCountField(final Map<String, Object> map) {
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/app/pager/SearchLogPager.java
/** Log type constant for click count aggregation. */ public static final String LOG_TYPE_CLICK_COUNT = "click_count_agg"; /** Log type constant for favorite logs. */ public static final String LOG_TYPE_FAVORITE = "favorite"; /** Log type constant for favorite count aggregation. */ public static final String LOG_TYPE_FAVORITE_COUNT = "favorite_count_agg"; /** Log type constant for user information logs. */
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/service/SearchLogService.java
} } } } /** * Creates search conditions for favorite log queries based on pager criteria. * * @param pager The search log pager containing filter criteria * @param cb The favorite log condition bean to configure */ private void createFavoriteLogCondition(final SearchLogPager pager, final FavoriteLogCB cb) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0)