Arthur Silva

Results 77 comments of Arthur Silva

Is this really fixable by backoff spinning? I mean, spinning burns CPU instead of properly giving away the thread time slice. I think the proper fix would be to use...

It'd be nice to include some benchmarks in the website.

Sorry, I meant an updated one. This benchmark is nice but it doesn't really give a good overview on the read performance, space amplification and compression of the storage engine....

I'd say throughput, latency (stalls etc..) and compression are the main selling numbers. Edit: those on different workloads are even better I think read/write/space amplification are all nice but take...

I believe Mark is a guy that get benchmarks right, example http://smalldatum.blogspot.com.br/2015/06/rocksdb-forestdb-via-forestdb-benchmark.html

Question. When some values are merged due to a get call the merged value is automatically inserted back into the database?

I think this is possibly over engineered, maybe it should just provide a way to serialize itself to a `T: Write` and read from a `T: Read` making sure it...

Yeah, it's a very invasive test suite. There's also the crossbeam-queue data structures. Tokio uses a trick that imports all primitives from a loom module, then swaps its contents based...

Hello, I have a question. I tried using the library in my django app but the original column is always getting filled with the same value as the first language...

Sorry, seems like I messed up the example and also wasn't clear enough. Example 2.0: ``` # in "en" context p = ModelX(id=1) p.attr = "foo" p.save() # now both...