- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for QueryLog (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLog.java
*/ package org.codelibs.fess.suggest.index.contents.querylog; import org.opensearch.common.Nullable; /** * The QueryLog class represents a log entry containing a query string and an optional filter query string. */ public class QueryLog { private final String q; private final String fq; /** * Constructor for QueryLog. * @param queryString The query string.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 1.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLogTest.java
assertEquals("test query", queryLog.getQueryString()); assertEquals("test filter", queryLog.getFilterQueryString()); } @Test public void test_constructorWithNullFilter() throws Exception { QueryLog queryLog = new QueryLog("test query", null); assertNotNull(queryLog); assertEquals("test query", queryLog.getQueryString()); assertNull(queryLog.getFilterQueryString()); }
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Thu Nov 13 00:40:54 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/operations/ContentIndexingOperations.java
* * @param ctx The content indexing context * @param queryLog The query log to index * @return The SuggestIndexResponse */ public SuggestIndexResponse indexFromQueryLog(final ContentIndexingContext ctx, final QueryLog queryLog) { return indexFromQueryLog(ctx, new QueryLog[] { queryLog }); } /** * Indexes a single query log. *Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 21.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLogReader.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.index.contents.querylog; import java.io.Closeable; /** * The {@code QueryLogReader} interface provides methods to read query logs and close the reader.Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 1.1K bytes - Click Count (0) -
README.md
.getResponse(); ``` ### Index from Query Logs ```java import org.codelibs.fess.suggest.index.contents.querylog.QueryLog; // Add suggestions from search query logs QueryLog queryLog = new QueryLog("user search query", "user123"); suggester.indexer().indexFromQueryLog(queryLog); ``` ### Popular Words Analytics ```java import org.codelibs.fess.suggest.request.popularwords.PopularWordsResponse;
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Aug 31 03:31:14 GMT 2025 - 12.1K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
} @Override public List<SuggestItem> parseQueryLog(final QueryLog queryLog, final String[] fields, final String[] tagFieldNames, final String roleFieldName, final ReadingConverter readingConverter, final Normalizer normalizer) { final String queryString = queryLog.getQueryString(); final String filterQueryString = queryLog.getFilterQueryString();Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 15.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
import org.codelibs.fess.suggest.index.SuggestIndexResponse; import org.codelibs.fess.suggest.index.contents.document.ESSourceReader; import org.codelibs.fess.suggest.index.contents.querylog.QueryLog; import org.codelibs.fess.suggest.index.contents.querylog.QueryLogReader; import org.codelibs.fess.suggest.request.popularwords.PopularWordsResponse; import org.codelibs.fess.suggest.request.suggest.SuggestResponse;
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 37.1K bytes - Click Count (0)