W3cubDocs

/RethinkDB Ruby

ReQL command: reconnect

Command syntax

conn.reconnect([{:noreply_wait => true}])

Description

Close and reopen a connection.

Closing a connection normally waits until all outstanding requests have finished and then frees any open resources associated with the connection. By passing false to the noreply_wait optional argument, the connection will be closed immediately, possibly aborting any outstanding noreply writes.

A noreply query is executed by passing the noreply option to the run command, indicating that run() should not wait for the query to complete before returning. You may also explicitly wait for a noreply query to complete by using the noreply_wait command.

Example: Cancel outstanding requests/queries that are no longer needed.

conn.reconnect(:noreply_wait => false)

Related commands

Get more help

Couldn't find what you were looking for?

© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/ruby/reconnect/