- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for clics (0.03 sec)
-
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} } /** * Adds a click log to the queue. * * @param clickLog The click log. */ public void addClickLog(final ClickLog clickLog) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (clickLogQueue.size() > fessConfig.getLoggingClickMaxQueueSizeAsInteger()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
TestSearchLogEvent searchEvent = new TestSearchLogEvent("id", 1L, "search"); assertEquals("search", searchEvent.getEventType()); // Test click event type TestSearchLogEvent clickEvent = new TestSearchLogEvent("id", 1L, "click"); assertEquals("click", clickEvent.getEventType()); // Test favorite event type TestSearchLogEvent favoriteEvent = new TestSearchLogEvent("id", 1L, "favorite");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
import jakarta.annotation.Resource; /** * Action class for handling document redirection requests. * This action processes "go" requests that redirect users to specific documents * while tracking click events and handling various URL types including file system paths. */ public class GoAction extends FessSearchAction { /** * Default constructor for GoAction. */ public GoAction() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
} } /** * Adds a click count field to the document based on search log data. * The click count represents how many times users have clicked on this document in search results. * * @param doc the document data map to add the click count to */ protected void addClickCountField(final Map<String, Object> doc) {
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/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
assertNotNull("ID should be set", dataMap.get("id")); assertNotNull("Doc ID should be set", dataMap.get("doc_id")); assertNotNull("Click count should be set", dataMap.get("click_count")); assertNotNull("Favorite count should be set", dataMap.get("favorite_count")); assertEquals(1, indexUpdateCallback.docList.size()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
} return null; } /** * Stores the document IDs associated with a search query for tracking purposes. * This method caches the document IDs returned for a specific query to enable click tracking and analytics. * * @param queryId the unique identifier for the search query * @param documentItems the list of document maps containing search results */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
breakCursor = true; } } }); }; } /** * Get the write call for click log ndjson. * @return The write call. */ public static Consumer<Writer> getClickLogNdjsonWriteCall() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
* responses. Although this client honors all [HTTP/1.1 (RFC 7234)][rfc_7234] cache headers, it * doesn't cache partial responses. * * ## Force a Network Response * * In some situations, such as after a user clicks a 'refresh' button, it may be necessary to skip * the cache, and fetch data directly from the server. To force a full refresh, add the `no-cache` * directive: * * ```java * Request request = new Request.Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 26.9K bytes - Viewed (0)