unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
From: David Edmondson <dme@dme.org>
To: notmuch@notmuchmail.org
Subject: [PATCH v3] emacs: Call "notmuch tag" once when applying tag changes to a thread.
Date: Wed,  8 Feb 2012 08:36:09 +0000	[thread overview]
Message-ID: <1328690169-6991-1-git-send-email-dme@dme.org> (raw)
In-Reply-To: <1328632303-31877-1-git-send-email-jani@nikula.org>

Optimize thread tagging by combining all the tagging operations to a
single "notmuch tag" call.

For threads in the order of tens or a hundred inbox tagged messages,
this gives a noticeable speedup. On two different machines, archiving
a thread of about 50 inbox tagged messages goes down from 10+ seconds
to about 0.5 seconds.

The bottleneck is not within emacs; the same behaviour can be observed
in the CLI. This approach has the added benefit of being more
reliable: any of the individual tagging operations might face a locked
database, leading to partial results.

This introduces a limitation to the number of messages that can be
archived at the same time (through ARG_MAX limiting the command
line). While at least on Linux this seems more like a theoretical
limitation than a real one, it could be avoided by archiving at most a
few hundred messages at a time.

Based on code from Jani Nikula <jani@nikula.org>.
---

Batch all thread tagging rather than archive being a special case.

 emacs/notmuch-show.el |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
index 7469e2e..bbba482 100644
--- a/emacs/notmuch-show.el
+++ b/emacs/notmuch-show.el
@@ -1582,16 +1582,17 @@ argument, hide all of the messages."
   (backward-button 1))
 
 (defun notmuch-show-tag-thread-internal (tag &optional remove)
-  "Add tag to the current set of messages.
+  "Add TAG to the current set of messages.
 
-If the remove switch is given, tags will be removed instead of
-added."
-  (goto-char (point-min))
-  (let ((tag-function (if remove
-			  'notmuch-show-remove-tag
-			'notmuch-show-add-tag)))
-    (loop do (funcall tag-function tag)
-	  until (not (notmuch-show-goto-message-next)))))
+If REMOVE is non-nil, TAG will be removed rather than added."
+  (save-excursion
+    (goto-char (point-min))
+    (let ((message-ids
+	  (loop collect (notmuch-show-get-message-id)
+		until (not (notmuch-show-goto-message-next)))))
+      (if message-ids
+	  (notmuch-tag (mapconcat #'identity message-ids " OR ")
+		       (concat (if remove "-" "+") tag))))))
 
 (defun notmuch-show-add-tag-thread (tag)
   "Add tag to all messages in the current thread."
-- 
1.7.8.3

  reply	other threads:[~2012-02-08  8:36 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-07 16:31 [PATCH v2] emacs: call "notmuch tag" only once when archiving a thread Jani Nikula
2012-02-08  8:36 ` David Edmondson [this message]
2012-02-08  9:59   ` [PATCH v3] emacs: Call "notmuch tag" once when applying tag changes to " Tomi Ollila
2012-02-08 16:43 ` [PATCH v4] " David Edmondson
2012-02-08 16:56   ` Dmitry Kurochkin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://notmuchmail.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1328690169-6991-1-git-send-email-dme@dme.org \
    --to=dme@dme.org \
    --cc=notmuch@notmuchmail.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).