Improve documentation wording

This commit is contained in:
Adrian Chaves 2026-06-19 16:57:48 +02:00
parent 464aa5b185
commit 0c326fdc03
2 changed files with 2 additions and 3 deletions

View File

@ -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.

View File

@ -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.