Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 631 for queryId (0.15 sec)

  1. src/main/config/es/fess_log_search_log.json

                "type" : "long"
              },
              "hitCountRelation" : {
                "type" : "keyword"
              },
              "languages" : {
                "type" : "keyword"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "queryOffset" : {
                "type" : "integer"
              },
              "queryPageSize" : {
                "type" : "integer"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Apr 12 15:00:27 GMT 2019
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                    final Map<String, String[]> resultDocIdsCache = getResultDocIdsCache(session);
                    resultDocIdsCache.put(queryId, docIdList.toArray(new String[docIdList.size()]));
                }
            });
        }
    
        public String[] getResultDocIds(final String queryId) {
            return LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).map(session -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/exentity/ClickLog.java

            }
        }
    
        @Override
        public String toString() {
            return "ClickLog [queryRequestedAt=" + queryRequestedAt + ", requestedAt=" + requestedAt + ", queryId=" + queryId + ", docId="
                    + docId + ", userSessionId=" + userSessionId + ", url=" + url + ", order=" + order + ", docMeta=" + docMeta + "]";
        }
    
        @Override
        public String getEventType() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    </div>
    <c:if test="${partialResults}">
    	<div class="alert">
    		<p>
    			<la:message key="labels.process_time_is_exceeded" />
    		</p>
    	</div>
    </c:if>
    <div id="result" class="row">
    	<input type="hidden" id="queryId" value="${f:h(queryId)}" /> <input
    		type="hidden" id="rt" value="${f:h(requestedTime)}" />
    	<ol class="list-unstyled col-md-8">
    		<c:forEach var="doc" varStatus="s" items="${documentItems}">
    			<li id="result${s.index}">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  5. src/main/webapp/WEB-INF/view/searchResults.jsp

    </div>
    <c:if test="${partialResults}">
    	<div class="alert">
    		<p>
    			<la:message key="labels.process_time_is_exceeded" />
    		</p>
    	</div>
    </c:if>
    <div id="result" class="row">
    	<input type="hidden" id="queryId" value="${f:h(queryId)}" /> <input
    		type="hidden" id="rt" value="${f:h(requestedTime)}" />
    	<ol class="list-unstyled col-md-8">
    		<c:forEach var="doc" varStatus="s" items="${documentItems}">
    			<li id="result${s.index}">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  6. src/main/config/es/fess_log_favorite_log.json

            "properties" : {
              "createdAt" : {
                "type" : "date",
                "format" : "date_optional_time"
              },
              "docId" : {
                "type" : "keyword"
              },
              "queryId" : {
                "type" : "keyword"
              },
              "url" : {
                "type" : "keyword"
              },
              "userInfoId" : {
                "type" : "keyword"
              }
            }
          }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Nov 05 07:28:42 GMT 2017
    - 855 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java

            }
        }
    
        public void addDocument(final Map<String, Object> doc) {
            documentList.add(doc);
        }
    
        public void setSearchQuery(final String query) {
            addSearchFieldLogValue(Constants.SEARCH_FIELD_LOG_SEARCH_QUERY, query);
        }
    
        public OptionalEntity<UserInfo> getUserInfo() {
            if (getUserInfoId() == null) {
                return OptionalEntity.empty();
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                    clickLog.setUserSessionId(userSessionId);
                    clickLog.setDocId(form.docId);
                    clickLog.setQueryId(form.queryId);
                    if (form.order != null) {
                        clickLog.setOrder(form.order);
                    }
                    searchLogHelper.addClickLog(clickLog);
                }
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_log.search_log/search_log.json

                "type": "keyword"
              }
            }
          }
        ],
        "properties": {
          "user": {
            "type": "keyword"
          },
          "roles": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "searchWord": {
            "type": "keyword"
          },
          "requestedAt": {
            "type": "date",
            "format": "date_optional_time"
          },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 25 13:38:21 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess_log.click_log/click_log.json

    {
        "properties": {
          "urlId": {
            "type": "keyword"
          },
          "docId": {
            "type": "keyword"
          },
          "queryId": {
            "type": "keyword"
          },
          "userSessionId": {
            "type": "keyword"
          },
          "url": {
            "type": "keyword"
          },
          "order": {
            "type": "integer"
          },
          "requestedAt": {
            "type": "date",
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Feb 24 22:07:26 GMT 2019
    - 544 bytes
    - Viewed (0)
Back to top