Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for depth_1 (0.08 sec)

  1. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlQueue.java

            }
            if (url != null) {
                builder.field(URL, url);
            }
            if (parentUrl != null) {
                builder.field(PARENT_URL, parentUrl);
            }
            if (depth != null) {
                builder.field(DEPTH, depth);
            }
            if (lastModified != null) {
                builder.field(LAST_MODIFIED, lastModified);
            }
            if (createTime != null) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. fess-crawler-opensearch/src/main/resources/mapping/queue.json

    {
        "properties": {
          "depth": {
            "type": "integer"
          },
          "parentUrl": {
            "type": "keyword"
          },
          "method": {
            "type": "keyword"
          },
          "weight": {
            "type": "float"
          },
          "createTime": {
            "type": "long"
          },
          "lastModified": {
            "type": "long"
          },
          "sessionId": {
            "type": "keyword"
          },
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 457 bytes
    - Viewed (0)
Back to top