summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar http://emk.myopenid.com/ <http://emk.myopenid.com/@web>2013-07-22 19:45:58 +0000
committerGravatar admin <admin@branchable.com>2013-07-22 19:45:58 +0000
commitd8725b0c5e527994ae7921306ce698ed1e8e171b (patch)
tree935036df314d974a79ff8af8828d21495ce5d06a
parent723ada15e2ba18d91b1c25c69a30a1c1d7a29e3b (diff)
Added a comment: Interesting speedup
-rw-r--r--doc/bugs/__34__Adding_4923_files__34___is_really_slow/comment_2_5f3b9f00bc31ce71d695c008971ed7fd._comment16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/bugs/__34__Adding_4923_files__34___is_really_slow/comment_2_5f3b9f00bc31ce71d695c008971ed7fd._comment b/doc/bugs/__34__Adding_4923_files__34___is_really_slow/comment_2_5f3b9f00bc31ce71d695c008971ed7fd._comment
new file mode 100644
index 000000000..9030d73f7
--- /dev/null
+++ b/doc/bugs/__34__Adding_4923_files__34___is_really_slow/comment_2_5f3b9f00bc31ce71d695c008971ed7fd._comment
@@ -0,0 +1,16 @@
+[[!comment format=mdwn
+ username="http://emk.myopenid.com/"
+ ip="24.2.150.84"
+ subject="Interesting speedup"
+ date="2013-07-22T19:45:58Z"
+ content="""
+I noticed that there were a lot of junk files with names of the form \"._*\" in the \"music\" directory I had added. These are created by older MacOS X systems storing Mac-related files on Unix file systems. (I think they're supposed to contain the old resource fork or something weird like that.)
+
+So while the endless import was running, I decided to live dangerous and delete the offending files:
+
+ find music/ -name ._\* -print0 | xargs -0 rm
+
+A few seconds later, the 4,923 file import finished.
+
+If I discover anything else interesting, I'll mention it. Once again, many thanks!
+"""]]