README.md in postgresql_cursor-0.6.2 vs README.md in postgresql_cursor-0.6.3
- old
+ new
@@ -65,9 +65,10 @@
fraction:float A value to set for the cursor_tuple_fraction variable.
PostgreSQL uses 0.1 (optimize for 10% of result set)
This library uses 1.0 (Optimize for 100% of the result set)
Do not override this value unless you understand it.
with_hold:boolean Keep the cursor "open" even after a commit.
+ cursor_name:string Give your cursor a name.
Notes:
* Use cursors *only* for large result sets. They have more overhead with the database
than ActiveRecord selecting all matching records.