As someone following German politics I had to read the headline twice :) Haven't seen it used without tree. (Yes, the spelling is not the same, but we are talking associations, not exact science.)
Merklizing the key/value store for fun and profit
11–18 of 18 posts
Re: Merklizing the key/value store for fun and profit
#12Blog: https://fireproof.storage/posts/from-mlops-to-point-of-sale:...
React hook: https://use-fireproof.com
Re: Merklizing the key/value store for fun and profit
#13Wouldn't it be simpler to use a trie over the hashes instead? It seems to me like it would have the properties desired here. I think the parent/child rule described here might actually result in some kind of trie.
Re: Merklizing the key/value store for fun and profit
#14Re: Merklizing the key/value store for fun and profit
#15Does anyone know how a tool like Figma or Miro handle conflict resolution or synchronization so efficiently in real-time? For example: the position of a simple colored box being manipulated by 2 or more people at the same time. Is this article even remotely relevant for such a use case?
https://www.figma.com/blog/how-figmas-multiplayer-technology...
https://www.figma.com/blog/making-multiplayer-more-reliable/
Re: Merklizing the key/value store for fun and profit
#16I'm guessing you need to choose a hashing function correctly, but is hashing 2n elements then comparing in log(n) actually that much faster than comparing in n? Evidently, with the right settings yes, or we wouldn't be here, but I'm just wondering if the hashing step doesn't actually end up costing a lot more than we think by saying "oh we just hash it"
Re: Merklizing the key/value store for fun and profit
#17Question:since doing this requires hashing your entire tree, what are the implications of doing this hashing operation on possibly millions of entries (which I'm estimating is the scale at which comparing linearly really start being noticably slow)? I'm guessing you need to choose a hashing function correctly, but is hashing 2n elements then comparing in log(n) actually that much faster than comparing in n? Evidently…
Re: Merklizing the key/value store for fun and profit
#18Question:since doing this requires hashing your entire tree, what are the implications of doing this hashing operation on possibly millions of entries (which I'm estimating is the scale at which comparing linearly really start being noticably slow)? I'm guessing you need to choose a hashing function correctly, but is hashing 2n elements then comparing in log(n) actually that much faster than comparing in n? Evidently…