Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for matchAllQuery (0.06 sec)

  1. src/main/java/org/codelibs/fess/suggest/Suggester.java

        }
    
        /**
         * Returns the total number of words in the suggestion index.
         * @return The total number of words.
         */
        public long getAllWordsNum() {
            return getNum(QueryBuilders.matchAllQuery());
        }
    
        /**
         * Returns the number of document words in the suggestion index.
         * @return The number of document words.
         */
        public long getDocumentWordsNum() {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 20.7K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java

            doMatchAll(opLambda);
        }
    
        protected void doMatchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            MatchAllQueryBuilder builder = QueryBuilders.matchAllQuery();
            regQ(builder);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionQuery.java

            doMatchAll(opLambda);
        }
    
        protected void doMatchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            MatchAllQueryBuilder builder = QueryBuilders.matchAllQuery();
            regQ(builder);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionQuery.java

            doMatchAll(opLambda);
        }
    
        protected void doMatchAll(ConditionOptionCall<MatchAllQueryBuilder> opLambda) {
            MatchAllQueryBuilder builder = QueryBuilders.matchAllQuery();
            regQ(builder);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 21.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            try {
                final QueryBuilder queryBuilder;
                if (Strings.isNullOrEmpty(q)) {
                    queryBuilder = QueryBuilders.matchAllQuery();
                } else {
                    final boolean prefixQuery = !q.endsWith(" ") && !q.endsWith(" ");
                    List<String> readingList = new ArrayList<>();
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/QueryHelper.java

                if (queryBuilder != null) {
                    queryContext.setQueryBuilder(queryBuilder);
                } else {
                    queryContext.setQueryBuilder(QueryBuilders.matchAllQuery());
                }
                // TODO options query
                context.accept(queryContext);
            } catch (final QueryParseException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

        public void testDeleteByQueryWithInvalidIndex() {
            // Test delete with non-existent index
            SuggestUtil.deleteByQuery(client, settings, "nonexistent_index", QueryBuilders.matchAllQuery());
        }
    
        @Test
        public void testDeleteScrollContext() {
            // Test with null scrollId (should not throw exception)
            SuggestUtil.deleteScrollContext(client, null);
    
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                        .setField(fessConfig.getIndexFieldDocId())));
                reader.setQuery(QueryBuilders
                        .functionScoreQuery(QueryBuilders.matchAllQuery(),
                                flist.toArray(new FunctionScoreQueryBuilder.FilterFunctionBuilder[flist.size()]))
                        .boostMode(CombineFunction.MULTIPLY));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final List<Map<String, Object>> documents = indexingHelper.getDocumentListByQuery(client, QueryBuilders.matchAllQuery(), null);
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals("{\"size\":1,\"query\":{\"match_all\":{\"boost\":1.0}}}", resultMap.get("query"));
            assertEquals(1, documents.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

        /**
         * Deletes all suggest items.
         * @return The SuggestDeleteResponse.
         */
        public SuggestDeleteResponse deleteAll() {
            final SuggestDeleteResponse response = deleteByQuery(QueryBuilders.matchAllQuery());
            restoreElevateWord();
            return response;
        }
    
        /**
         * Deletes document words.
         * @return The SuggestDeleteResponse.
         */
    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