parent
6663660d92
commit
8a49614c7e
|
@ -184,7 +184,7 @@ module Mongo
|
||||||
# end of the query's execution.
|
# end of the query's execution.
|
||||||
# For details see http://www.mongodb.org/display/DOCS/How+to+do+Snapshotting+in+the+Mongo+Database
|
# For details see http://www.mongodb.org/display/DOCS/How+to+do+Snapshotting+in+the+Mongo+Database
|
||||||
# @option opts [Boolean] :batch_size (100) the number of documents to returned by the database per
|
# @option opts [Boolean] :batch_size (100) the number of documents to returned by the database per
|
||||||
# GETMORE operation. A value of 0 will let the database server decide how many results to returns.
|
# GETMORE operation. A value of 0 will let the database server decide how many results to return.
|
||||||
# This option can be ignored for most use cases.
|
# This option can be ignored for most use cases.
|
||||||
# @option opts [Boolean] :timeout (true) when +true+, the returned cursor will be subject to
|
# @option opts [Boolean] :timeout (true) when +true+, the returned cursor will be subject to
|
||||||
# the normal cursor timeout behavior of the mongod process. When +false+, the returned cursor will
|
# the normal cursor timeout behavior of the mongod process. When +false+, the returned cursor will
|
||||||
|
|
|
@ -259,6 +259,9 @@ module Mongo
|
||||||
# Note that the batch size will take effect only on queries
|
# Note that the batch size will take effect only on queries
|
||||||
# where the number to be returned is greater than 100.
|
# where the number to be returned is greater than 100.
|
||||||
#
|
#
|
||||||
|
# This can not override MongoDB's limit on the amount of data it will
|
||||||
|
# return to the client. Depending on server version this can be 4-16mb.
|
||||||
|
#
|
||||||
# @param [Integer] size either 0 or some integer greater than 1. If 0,
|
# @param [Integer] size either 0 or some integer greater than 1. If 0,
|
||||||
# the server will determine the batch size.
|
# the server will determine the batch size.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue