MinFrequency
A minimum recrawl frequency rule for documents matching a given pattern.
Notes
Defines a minimum recrawl frequency entry, specifying how often documents matching a given pattern (by reference or content type) should be re-crawled. Used with the recrawlable resolver to control crawl scheduling.
Usage
- YAML
- JSON
- XML
applyTo: CONTENT_TYPE
matcher:
ignoreCase: false
ignoreDiacritic: false
matchEmpty: false
method: BASIC
negateMatches: false
partial: false
pattern: string
replaceAll: false
trim: false
value: string
{
"applyTo": "CONTENT_TYPE",
"matcher": {
"ignoreCase": false,
"ignoreDiacritic": false,
"matchEmpty": false,
"method": "BASIC",
"negateMatches": false,
"partial": false,
"pattern": "string",
"replaceAll": false,
"trim": false
},
"value": "string"
}
<minFrequency>
<applyTo>CONTENT_TYPE</applyTo>
<matcher>
<ignoreCase>false</ignoreCase>
<ignoreDiacritic>false</ignoreDiacritic>
<matchEmpty>false</matchEmpty>
<method>BASIC</method>
<negateMatches>false</negateMatches>
<partial>false</partial>
<pattern>string</pattern>
<replaceAll>false</replaceAll>
<trim>false</trim>
</matcher>
<value>string</value>
</minFrequency>
Properties
| Property | Type | Required | Default |
|---|---|---|---|
applyTo | enum | No | - |
matcher | TextMatcher | No | TextMatcher |
value | string | No | - |
Property Details
applyTo
Specifies whether the matcher is applied to the document reference or its content type. Supported values are REFERENCE (default) and CONTENT_TYPE.
Allowed Values
CONTENT_TYPEREFERENCE
matcher
A text matcher applied to either the document reference or content type (as defined by applyTo) to identify which documents this frequency rule applies to.
value
The minimum recrawl frequency as a string. Can be one of always, hourly, daily, weekly, monthly, yearly, never, or a numeric value in milliseconds representing the minimum time between crawl sessions.