lachesis-base
lachesis-base copied to clipboard
porting red black tree to optimize the key/value
In flushable module, we use rbt module for red-black-tree implementation, but it operates with interface{}, which involves an additional overhead. We can just replace interface{} with byte[]. It should boost performance a little
@uprendis PTAL