mirror of https://github.com/scrapy/scrapy.git
Improve documentation wording
This commit is contained in:
parent
464aa5b185
commit
0c326fdc03
|
|
@ -433,7 +433,6 @@ In this case, the spider spent about 45 seconds paused due to large responses
|
|||
in memory. You could:
|
||||
|
||||
- Increase :setting:`RESPONSE_MAX_ACTIVE_SIZE` if your machine has enough RAM.
|
||||
- Reduce :setting:`CONCURRENT_REQUESTS` to let responses be processed faster.
|
||||
- Check that your code doesn't hold strong references to
|
||||
:class:`~scrapy.http.Response` objects longer than necessary.
|
||||
|
||||
|
|
|
|||
|
|
@ -1723,8 +1723,8 @@ This counts both the size of response bodies that have passed through
|
|||
memory, and the :setting:`rough size <RESPONSE_ROUGH_SIZE>` of requests
|
||||
currently being downloaded.
|
||||
|
||||
When the total exceeds this value, Scrapy pauses scheduling new requests until
|
||||
it drops below the limit.
|
||||
When the total exceeds this value, Scrapy pauses sending new requests to the
|
||||
downloader until it drops below the limit.
|
||||
|
||||
If you set this to ``0``, the limit is disabled.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue