Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for record_count (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            params.put("num", "100");
            String response = checkMethodBase(new HashMap<>()).params(params).get("/api/v1/documents").asString();
            int recordCount = JsonPath.from(response).getInt("record_count");
            assertTrue(recordCount > 0);
    
            Map<String, String> wcParams1 = new HashMap<>();
            wcParams1.put("q", field + ":" + wcQuery1);
            wcParams1.put("num", "100");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 19K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java

                    .params(params)
                    .when()
                    .get("/api/v1/suggest-words")
                    .then()
                    .statusCode(200)
                    .body("record_count", greaterThanOrEqualTo(0));
        }
    
        @Test
        public void testSuggestWords_withNum() {
            Map<String, String> params = new HashMap<>();
            params.put("q", "a");
            params.put("num", "5");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java

            JsonPath jsonPath = JsonPath.from(response);
            int recordCount = jsonPath.getInt("record_count");
            assertTrue(recordCount >= 0, "Record count should be >= 0");
    
            if (recordCount > 0) {
                List<Map<String, Object>> labels = jsonPath.getList("data");
                assertTrue(labels != null, "Data should not be null when labels exist");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append(pageSize);
                buf.append(',');
                buf.append("\"page_number\":");
                buf.append(currentPageNumber);
                buf.append(',');
                buf.append("\"record_count\":");
                buf.append(allRecordCount);
                buf.append(',');
                buf.append("\"record_count_relation\":");
                buf.append(escapeJson(allRecordCountRelation));
                buf.append(',');
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  5. src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java

                    .params(params)
                    .when()
                    .get("/api/v1/favorites")
                    .then()
                    .statusCode(200)
                    .body("record_count", greaterThanOrEqualTo(0))
                    .body("data", notNullValue());
        }
    
        @Test
        public void testGetFavorites_noQueryId() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  6. MIGRATION.md

    ```
    
    **Response**:
    ```json
    {
      "response": {
        "version": 1,
        "status": 0,
        "q": "search",
        "exec_time": 0.123,
        "page_size": 10,
        "page_number": 1,
        "record_count": 234,
        "result": [
          {
            "url": "http://example.com/page1",
            "title": "Example Page",
            "content_description": "...search results...",
            "score": 1.543
          }
        ]
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  7. src/main/webapp/js/suggestor.js

            },
    
            /**
             * Create and display the autocomplete suggestion list
             */
            createAutoCompleteList: function (obj) {
              if (typeof obj.record_count === "undefined") {
                this.hideSuggestionBox();
                return;
              }
    
              var hits = obj.data,
                suggestor = this,
                reslist,
                $olEle,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * The current page number of the search results.
             */
            protected int pageNumber;
            /**
             * The total number of records found.
             */
            protected long recordCount;
            /**
             * The relation of the record count (e.g., "eq" for exact, "gte" for greater than or equal to).
             */
            protected String recordCountRelation;
            /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
Back to Top