Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for clickLogBhv (0.22 sec)

  1. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        /** Behavior handler for search log operations. */
        @Resource
        private SearchLogBhv searchLogBhv;
    
        /** Behavior handler for click log operations. */
        @Resource
        private ClickLogBhv clickLogBhv;
    
        /** Behavior handler for favorite log operations. */
        @Resource
        private FavoriteLogBhv favoriteLogBhv;
    
        /** Behavior handler for user information operations. */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        *
        * @param url The URL.
        * @return The click count.
        */
        public int getClickCount(final String url) {
            final ClickLogBhv clickLogBhv = ComponentUtil.getComponent(ClickLogBhv.class);
            return clickLogBhv.selectCount(cb -> {
                cb.query().setUrl_Equal(url);
            });
        }
    
        /**
         * Gets the favorite count for a URL.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        private DataService<OpenSearchAccessResult> dataService;
        private UrlQueueService<OpenSearchUrlQueue> urlQueueService;
        private UrlFilterService urlFilterService;
        private ClickLogBhv clickLogBhv;
        private FavoriteLogBhv favoriteLogBhv;
        private IngestFactory ingestFactory;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    
            // Initialize IndexUpdater
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            final long timeout = fessConfig.getIndexBackupLogLoadTimeoutAsInteger().longValue();
            return writer -> {
                final ClickLogBhv bhv = ComponentUtil.getComponent(ClickLogBhv.class);
                bhv.selectCursor(cb -> {
                    cb.query().matchAll();
                    cb.query().addOrderBy_RequestedAt_Asc();
                }, new LogEntityRowHandler<ClickLog>() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        /** Service for URL filtering operations */
        @Resource
        protected UrlFilterService urlFilterService;
    
        /** Behavior class for click log operations */
        @Resource
        protected ClickLogBhv clickLogBhv;
    
        /** Behavior class for favorite log operations */
        @Resource
        protected FavoriteLogBhv favoriteLogBhv;
    
        /** Helper for system-level operations */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top