mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
Fix typo: itterate -> iterate
This commit is contained in:
parent
8d395ff8c0
commit
56ebc6a656
@ -5,7 +5,7 @@ Use a PostgreSQL result cursor from node with an easy to use API.
|
||||
|
||||
### why?
|
||||
|
||||
Sometimes you need to itterate through a table in chunks. It's extremely inefficient to use hand-crafted `LIMIT` and `OFFSET` queries to do this.
|
||||
Sometimes you need to iterate through a table in chunks. It's extremely inefficient to use hand-crafted `LIMIT` and `OFFSET` queries to do this.
|
||||
PostgreSQL provides built-in functionality to fetch a "cursor" to your results and page through the cursor efficiently fetching chunks of the results with full MVCC compliance.
|
||||
|
||||
This actually ends up pairing very nicely with node's _asyncness_ and handling a lot of data. PostgreSQL is rad.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user