summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Xyem <Xyem@web>2014-08-01 09:05:45 +0000
committerGravatar admin <admin@branchable.com>2014-08-01 09:05:45 +0000
commit7bdc2bee4faad0a694f01e33a62a34bfea1a1169 (patch)
tree6b5a840e3ad6cedd899acb72037d98d277070266 /doc
parentcb61f8a0b19c3414334ea7d4d924286db3aa6dc6 (diff)
Added a comment
Diffstat (limited to 'doc')
-rw-r--r--doc/todo/Speed_up___39__import_--clean-duplicates__39__/comment_2_9c6688901ef20badd834419202627d5c._comment21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/todo/Speed_up___39__import_--clean-duplicates__39__/comment_2_9c6688901ef20badd834419202627d5c._comment b/doc/todo/Speed_up___39__import_--clean-duplicates__39__/comment_2_9c6688901ef20badd834419202627d5c._comment
new file mode 100644
index 000000000..e372b405e
--- /dev/null
+++ b/doc/todo/Speed_up___39__import_--clean-duplicates__39__/comment_2_9c6688901ef20badd834419202627d5c._comment
@@ -0,0 +1,21 @@
+[[!comment format=mdwn
+ username="Xyem"
+ ip="81.111.193.130"
+ subject="comment 2"
+ date="2014-08-01T09:05:45Z"
+ content="""
+Could be tested out with an additional flag `--with-size-bloom` on import?
+
+It would then build a bloom (and use a cached one with --fast) and do the usual import.
+
+So I could do this:
+
+ # Bloom is created and the import is done using it
+ git annex import --clean-duplicates --with-size-bloom $TARGET
+
+ # Previously created bloom is used
+ git annex import --clean-duplicates --with-size-bloom --fast $TARGET2
+ git annex import --clean-duplicates --with-size-bloom --fast $TARGET3
+
+I can implement this behaviour in Perl with Bloom::Filter and let you know how it performs if that would be useful to you..?
+"""]]