Dave Bryson

Results 35 comments of Dave Bryson

Same for me. Is there any workaround? I'm having problems with hex strings such as: `"0x4e47e95247a535d9c1ed9e5a73f1344a5d864383"` Being converted to a number: `4.469049581943643e+47` The only alternative is to use a `type`...

Unfortunately I do not have a Windows machine to test on right now. Instead of making a link I usually put a copy of BeepBeep in a "deps" directory under...

thanks for catching that. I'll take a look at it.

@mvikharev [See here](https://github.com/davebryson/bftdb/blob/master/Gopkg.toml#L41)

Why is `apply_unchecked` marked as `unsafe`? Is this just to alert the user that `Batch` should be sorted and contain unique keys? If so, why not replace `Batch` with `BtreeMap`...

First thoughts on the signatures for the Merk top-level API: ```rust /// Create / Open /// Where Database is a trait for storage pub fn new(db: Arc) -> Result {}...

Yes. In fact that's what I did with an example app. It's basically a cache wrapper around Merk that uses BTreeMap. ```rust /// On Commit /// BtreeMap => Batch ///...

Understand. I agree Rocksdb is probably the best bet for now. I'm also interested in using columns vs prefixing keys with a common namespace. Down the road it may be...

Ok. I see where you're going with all this now. Interesting and exciting stuff! > ... is this for a performance increase, or for logically structuring the data for app...

Thanks. Yes. I have a map in the sample app I'm working on now: 1 for checkTx and 1 for deliverTx. The deliveryTx map is batched to Merk in the...