Extension configuration¶
The extension currently provides the following configuration options:
- limit¶
- Type
integer
- Default
250
Allows to limit the amount of crawled pages in one iteration.
Tip
Can be set to
0
to crawl all available pages in XML sitemaps.
- crawler¶
- Type
string (FQCN)
- Default
EliasHaeussler\Typo3Warming\Crawler\ConcurrentUserAgentCrawler
Default crawler to be used for crawling the requested pages.
Note
Custom crawlers must implement
EliasHaeussler\CacheWarmup\Crawler\CrawlerInterface
.
- crawlerOptions¶
- Type
string (JSON)
JSON-encoded string of custom crawler options for the default crawler. Applies only to crawlers implementing the
EliasHaeussler\CacheWarmup\Crawler\ConfigurableCrawlerInterface
. For more information read Configurable crawlers.
- verboseCrawler¶
- Type
string (FQCN)
- Default
EliasHaeussler\Typo3Warming\Crawler\OutputtingUserAgentCrawler
Verbose crawler to be used for cache warmup from the command-line.
Note
Custom verbose crawlers must implement
EliasHaeussler\CacheWarmup\Crawler\VerboseCrawlerInterface
.
- verboseCrawlerOptions¶
- Type
string (JSON)
JSON-encoded string of custom crawler options for the verbose crawler. Applies only to crawlers implementing the
EliasHaeussler\CacheWarmup\Crawler\ConfigurableCrawlerInterface
. For more information read Configurable crawlers.
- supportedDoktypes¶
- Type
string (comma-separated list)
- Default
1
Comma-separated list of doktypes to be supported for cache warmup in the page tree context menu. Defaults to default pages with doktype
1
only. If your project implements custom doktypes, you can add them here to support cache warmup from the context menu.