You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/rethinkdb/connection.ex
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,9 @@ defmodule RethinkDB.Connection do
93
93
94
94
* `timeout` - How long to wait for a response
95
95
* `db` - Default database to use for query. Can also be specified as part of the query.
96
+
* `durability` - possible values are 'hard' and 'soft'. In soft durability mode RethinkDB will acknowledge the write immediately after receiving it, but before the write has been committed to disk.
97
+
* `noreply` - set to true to not receive the result object or cursor and return immediately.
98
+
* `profile` - whether or not to return a profile of the query’s execution (default: false).
0 commit comments