RethinkDb.Driver
RethinkDb.Driver copied to clipboard
:headphones: A NoSQL C#/.NET RethinkDB database driver with 100% ReQL API coverage.
Ryan Paul @ RethinkDB brought to light there are some issues with PowerShell + Lambdas (`ReqlFunction*`) type resolution. After some light debugging, I suspect this is a problem with `Newtonsoft.Json`...
Asked on slack `#driver-dev`: Hey there... was thinking more about the performance of the C# driver... I was wondering, at the protocol level, is there assurance that the JSON response...
Would it make sense to to swap out Json.NET for Jil or provide alternative json implementation? https://github.com/kevin-montrose/Jil
Seems like Node ReGrid can get 3x more writes than .NET; yielding faster upload wall time. See image below (credits @buskila):  ## Test setup Upload only: File Size: 1...
Started off mostly for Unity3D, but also applies to those systems that don't have full threading `await/async` support like Windows Phone, IOT, and Xamarin that may prefer different threading /...
Been thinking about `Cursor` a lot recently. One of the things I see with the current implementation is, every time the consuming thread reaches zero-buffered items the consuming thread has...
Add translation of queries like on indexes to use `Between` - `.Where( x.Size > 5 && x.Size < 10 )` - `.Where( x.Date < DateTime.Now && x.Date > new DateTime(...
Thanks for all the work on this library. I like it so far. Do you have any plans to provide more idiomatic API with strong typing? As it stands everything...
Any plans to implement row? Row feels like a good way to construct queries on the fly (trees of RqlExpr). I had to resort to working ReqlFunction1 which works but...