aboutsummaryrefslogtreecommitdiffstats
path: root/utils/merkletrie/doc.go
diff options
context:
space:
mode:
authorAlberto Cortés <alcortesm@gmail.com>2017-02-13 10:28:39 +0100
committerGitHub <noreply@github.com>2017-02-13 10:28:39 +0100
commit1fdfe887278bf1e6039215fa5f48e5b497c20bee (patch)
treeb11025cdf41f8eac57af54d6c8202290d78afe13 /utils/merkletrie/doc.go
parent87a84b1cb90149cf81e76be46811341a30e4a367 (diff)
downloadgo-git-1fdfe887278bf1e6039215fa5f48e5b497c20bee.tar.gz
add difftree for noders (#262)
difftree for noders
Diffstat (limited to 'utils/merkletrie/doc.go')
-rw-r--r--utils/merkletrie/doc.go22
1 files changed, 12 insertions, 10 deletions
diff --git a/utils/merkletrie/doc.go b/utils/merkletrie/doc.go
index 28ece3e..5204024 100644
--- a/utils/merkletrie/doc.go
+++ b/utils/merkletrie/doc.go
@@ -1,20 +1,11 @@
/*
Package merkletrie provides support for n-ary trees that are at the same
-time Merkle trees and Radix trees (tries), and provides an efficient
-tree comparison algorithm for them.
+time Merkle trees and Radix trees (tries).
Git trees are Radix n-ary trees in virtue of the names of their
tree entries. At the same time, git trees are Merkle trees thanks to
their hashes.
-When comparing git trees, the simple approach of alphabetically sorting
-their elements and comparing the resulting lists is too slow as it
-depends linearly on the number of files in the trees: When a directory
-has lots of files but none of them has been modified, this approach is
-very expensive. We can do better by prunning whole directories that
-have not change, just by looking at their hashes. This package provides
-the tools to do exactly that.
-
This package defines Merkle tries as nodes that should have:
- a hash: the Merkle part of the Merkle trie
@@ -28,5 +19,16 @@ their children, which is good for testing purposes.
Nodes in the Merkle trie are abstracted by the Noder interface. The
intended use is that git trees implements this interface, either
directly or using a simple wrapper.
+
+This package provides an iterator for merkletries that can skip whole
+directory-like noders and an efficient merkletrie comparison algorithm.
+
+When comparing git trees, the simple approach of alphabetically sorting
+their elements and comparing the resulting lists is too slow as it
+depends linearly on the number of files in the trees: When a directory
+has lots of files but none of them has been modified, this approach is
+very expensive. We can do better by prunning whole directories that
+have not change, just by looking at their hashes. This package provides
+the tools to do exactly that.
*/
package merkletrie