mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
fixed typo cumbersom (#49)
This commit is contained in:
parent
c95a650a73
commit
e153e3f5fd
@ -35,7 +35,7 @@ pg.connect((err, client, done) => {
|
||||
|
||||
The stream uses a cursor on the server so it efficiently keeps only a low number of rows in memory.
|
||||
|
||||
This is especially useful when doing [ETL](http://en.wikipedia.org/wiki/Extract,_transform,_load) on a huge table. Using manual `limit` and `offset` queries to fake out async itteration through your data is cumbersom, and _way way way_ slower than using a cursor.
|
||||
This is especially useful when doing [ETL](http://en.wikipedia.org/wiki/Extract,_transform,_load) on a huge table. Using manual `limit` and `offset` queries to fake out async itteration through your data is cumbersome, and _way way way_ slower than using a cursor.
|
||||
|
||||
_note: this module only works with the JavaScript client, and does not work with the native bindings. libpq doesn't expose the protocol at a level where a cursor can be manipulated directly_
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user