Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for SessionId (0.25 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoDbm.java

                0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnSessionId = cci("sessionId", "sessionId", null, null, String.class, "sessionId", null, false, false,
                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnCreatedTime() {
            return _columnCreatedTime;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java

    /**
     * UrlFilter checks if a given url is a target one.
     *
     * @author shinsuke
     *
     */
    public interface UrlFilter {
    
        /**
         * Initialize a url filter by sessionId.
         *
         * @param sessionId Session ID
         */
        void init(String sessionId);
    
        /**
         * Check if a given url is a target.
         *
         * @param url URL
         * @return true if url is matched
         */
        boolean match(String url);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            }
            try {
                urlQueueService.delete(sessionId);
            } catch (final Exception e) {
                logger.warn("Failed to delete url queues: {}", sessionId, e);
            }
            try {
                dataService.delete(sessionId);
            } catch (final Exception e) {
                logger.warn("Failed to delete data: {}", sessionId, e);
            }
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/ExecJob.java

        }
    
        public ExecJob jobExecutor(final JobExecutor jobExecutor) {
            this.jobExecutor = jobExecutor;
            return this;
        }
    
        public ExecJob sessionId(final String sessionId) {
            this.sessionId = sessionId;
            return this;
        }
    
        public ExecJob logFilePath(final String logFilePath) {
            this.logFilePath = logFilePath;
            return this;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/entity/EsUrlQueue.java

        @Override
        public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
            builder.startObject();
            if (sessionId != null) {
                builder.field(SESSION_ID, sessionId);
            }
            if (method != null) {
                builder.field(METHOD, method);
            }
            if (url != null) {
                builder.field(URL, url);
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                        uq.setParentUrl(url);
                        uq.setSessionId(crawlerContext.sessionId);
                        uq.setUrl(d.getUrl());
                        uq.setMetaData(d.getMetaData());
                        return uq;
                    }).collect(Collectors.toList());
            urlQueueService.offerAll(crawlerContext.sessionId, childList);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/main/config/es/fess_config_crawling_info.json

                "type" : "long"
              },
              "expiredTime" : {
                "type" : "long"
              },
              "name" : {
                "type" : "keyword"
              },
              "sessionId" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021050413",
            "number_of_shards" : "5",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 756 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

        }
    
        default String getParentEncoding(final String parentUrl, final String sessionId) {
            final String key = sessionId + ":" + parentUrl;
            String enc = parentEncodingMap.get(key);
            if (enc != null) {
                return enc;
            }
    
            final AccessResult<?> accessResult = ComponentUtil.getDataService().getAccessResult(sessionId, parentUrl);
            if (accessResult != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                }
    
                final String sessionId;
                if (searchLog.getUserSessionId() != null) {
                    sessionId = searchLog.getUserSessionId();
                } else if (Constants.SEARCH_LOG_ACCESS_TYPE_WEB.equals(searchLog.getAccessType())) {
                    sessionId = searchLog.getClientIp();
                } else {
                    sessionId = searchLog.getClientIp() + '_' + searchLog.getSearchWord();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. fess-crawler-es/src/main/resources/mapping/filter.json

    {
        "properties": {
          "sessionId": {
            "type": "keyword"
          },
          "filterType": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          }
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 192 bytes
    - Viewed (0)
Back to top