Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for record_count (0.07 seconds)

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

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

            given().contentType("application/json")
                    .when()
                    .get("/api/v1/popular-words")
                    .then()
                    .statusCode(200)
                    .body("record_count", greaterThanOrEqualTo(0))
                    .body("data", notNullValue());
        }
    
        @Test
        public void testPopularWords_withSeed() {
            Map<String, String> params = new HashMap<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 3.6K 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/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)
  4. src/main/config/openapi/openapi-user.yaml

                      page_size:
                        type: integer
                        example: 20
                      page_number:
                        type: integer
                        example: 1
                      record_count:
                        type: integer
                        format: int64
                        example: 31625
                      page_count:
                        type: integer
                        example: 1
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 09 06:31:27 GMT 2024
    - 21.6K bytes
    - Click Count (0)
  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/search.js

          type: "get",
          timeout: AJAX_TIMEOUT,
          url: contextPath + "/api/v1/favorites",
          data: {
            queryId: $queryId.val()
          }
        })
          .done(function(data) {
            if (data.record_count > 0) {
              var docIdsLookup = {};
              var i;
              for (i = 0; i < data.data.length; i++) {
                docIdsLookup["#" + data.data[i].doc_id] = true;
              }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  8. 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)
  9. 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