Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CLICK (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top