mfenniak / rethinkdb-net

A C# / .NET client driver for RethinkDB.
Other
247 stars 37 forks source link

How do you set durability and noreply options on Insert operations? #221

Closed cecilphillip closed 9 years ago

cecilphillip commented 9 years ago

I'm going through a reference where these settings are used. I see there's suppose for setting conflict, but not these other two. How do you set these?

mfenniak commented 9 years ago

Hi Cecil,

I'm sorry to say that neither option is currently supported by the driver. The durability option would probably be fairly straight-forward to implement, but I think the noreply option would require some new method signatures since it varies the results of a query (obviously). I'm afraid I won't be able to jump on implementing this right now, but I'd be able to review a pull request if you (or another contributor) are interested in submitting one.

cecilphillip commented 9 years ago

Ok, Thanks Mathieu