示例#1
0
 /**
  * Sets the content-size-limit for content the crawler should receive from documents.
  *
  * If the crawler is receiving the content of a page or file and the contentsize-limit is reached, the crawler stops receiving content
  * from this page or file.
  *
  * Please note that the crawler can only find links in the received portion of a document.
  *
  * The default-value is 0 (no limit).
  *
  * @param int $bytes The limit in bytes.
  * @return bool
  * @section 5 Limit-settings
  */
 public function setContentSizeLimit($bytes)
 {
     return $this->PageRequest->setContentSizeLimit($bytes);
 }