Skip to content

Commit a725749

Browse files
committed
chore: update README
1 parent 32ad424 commit a725749

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -355,10 +355,11 @@ console.log(directories)
355355
Note that we're only interested in entries under the `cats` directory, which is why we're using a trailing slash.
356356
Without it, other keys like `catsuit` would also match.
357357

358-
The server returns lists in pages of 1,000 entries. By default, the `list()` method automatically retrieves all pages,
359-
meaning you'll always get the full list of results. If you'd like to handle this pagination manually, you can supply the
360-
`paginate` parameter, which makes `list()` return an
361-
[`AsyncIterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncIterator).
358+
For performance reasons, the server groups entries into multiple pages with a given size. By default, the `list()`
359+
method automatically retrieves all pages, meaning you'll always get the full list of results.
360+
361+
If you'd like to handle this pagination manually, you can supply the `paginate` parameter, which makes `list()` return
362+
an [`AsyncIterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncIterator).
362363

363364
```javascript
364365
const blobs = []

0 commit comments

Comments
 (0)