Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for parseQueryLog (0.07 sec)

  1. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

        String roleFieldName = "role";
    
        public void test_parseQueryLog() throws Exception {
    
            QueryLog queryLog = new QueryLog("content:検索エンジン", null);
            List<SuggestItem> items = defaultContentsParser.parseQueryLog(queryLog, supportedFields, tagFieldNames, roleFieldName,
                    createDefaultReadingConverter(), createDefaultNormalizer());
            SuggestItem item = items.get(0);
            assertEquals("検索エンジン", item.getText());
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

         * @param normalizer the normalizer to use for normalizing values
         * @return a list of suggest items parsed from the query log
         */
        List<SuggestItem> parseQueryLog(QueryLog queryLog, String[] fields, String[] tagFieldNames, String roleFieldName,
                ReadingConverter readingConverter, Normalizer normalizer);
    
        /**
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sat Mar 15 06:51:20 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

            } catch (final IOException e) {
                throw new SuggesterException("Failed to create SuggestItem from search words.", e);
            }
        }
    
        @Override
        public List<SuggestItem> parseQueryLog(final QueryLog queryLog, final String[] fields, final String[] tagFieldNames,
                final String roleFieldName, final ReadingConverter readingConverter, final Normalizer normalizer) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                if (parallel) {
                    stream.parallel();
                }
                final SuggestItem[] array = stream.flatMap(queryLog -> contentsParser
                        .parseQueryLog(queryLog, supportedFields, tagFieldNames, roleFieldName, readingConverter, normalizer)
                        .stream()).toArray(n -> new SuggestItem[n]);
                final long parseTime = System.currentTimeMillis();
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 34.8K bytes
    - Viewed (0)
Back to top