Bladeren bron

Remove the first caveat

Vadim Markovtsev 9 jaren geleden
bovenliggende
commit
3f4a284fdc
1 gewijzigde bestanden met toevoegingen van 1 en 5 verwijderingen
  1. 1 5
      README.md

+ 1 - 5
README.md

@@ -53,12 +53,8 @@ git rev-list HEAD | tac | hercules -commits - -sampling 30 -granularity 365 http
 ```
 ```
 
 
 ### Caveats
 ### Caveats
-1. Currently, go-git's "diff tree" algorithm's complexity is n log(n) where
-n is the number of files in the tree. Git's and libgit2's complexity
-is sublinear, almost constant because they are comparing the hashes of subtrees. go-git
-will have the same complexity in the very near future.
 
 
-2. Currently, go-git's "file system" backend does not cache anything in memory.
+1. Currently, go-git's "file system" backend does not cache anything in memory.
 Every object retrieval operation decompresses the packfiles, parses them, etc.
 Every object retrieval operation decompresses the packfiles, parses them, etc.
 Effectively, the performance **slowdown** is **100x**. This will be fixed
 Effectively, the performance **slowdown** is **100x**. This will be fixed
 in the near future too.
 in the near future too.