Brian Chavez

Results 19 issues of Brian Chavez

Hey there, I think I found a bug. Consider the following C#: ```csharp public enum BillingCycle { Yearly = 7, Monthly, Never = 4 } ``` If no explicit value...

Hello, Thank you for the cool Ladda library. Just wanted to drop a quick note in case anyone had the same issue as me... I googled for a few hours...

RethinkDB 2.4 is released and back in full swing. C# driver will need to be updated. https://rethinkdb.com/blog/2.4.0-release https://github.com/rethinkdb/rethinkdb/releases/tag/v2.4.0 Tasks - [x] Update proto files, regenerate AST for bitwise operators. -...

https://github.com/damianh/LibLog Copy [LibLog.cs](https://github.com/damianh/LibLog/blob/master/src/LibLog/LibLog.cs) to the driver project. Basically, `LibLog.cs` contains some fancy reflection to find out what "logging" system is present in the execution environment. **Pros** Allows us to break...

Just saw this NDC 2019 talk by Jimmy Bogard: https://www.youtube.com/watch?v=IMvrg0bN9-o Associated blog post: * https://jimmybogard.com/life-beyond-distributed-transactions-an-apostates-implementation-relational-resources/ * https://jimmybogard.com/life-beyond-distributed-transactions-an-apostates-implementation-conclusion/ Associated Research Paper by Pat Helland: [LifeBeyondTxns.pdf](https://github.com/bchavez/RethinkDb.Driver/files/2866587/LifeBeyondTxns.pdf) https://queue.acm.org/detail.cfm?id=3025012 It might be interesting to...

Benefits -------- * Pooled memory management reducing allocations. * Instead of current message pump design of pulling/pushing bytes out of a `NetworkStream` and using `CancellationTokenSource`; we can leverage some of...

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...

Seems like Node ReGrid can get 3x more writes than .NET; yielding faster upload wall time. See image below (credits @buskila): ![pasted_image_at_2016_08_24_13_03](https://cloud.githubusercontent.com/assets/478118/17918557/d28f41ae-697a-11e6-82a6-1215e2701654.png) ## 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 /...