emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Daniel Clemente <n142857@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: faster agenda with properties support disabled (no org-refresh-properties)
Date: Fri, 23 Aug 2013 16:24:12 +0700	[thread overview]
Message-ID: <CAJKAhPBoecJ_5W-c6ZTZgG6HA9WEqdmHXiZGMO=PX52439kTVw@mail.gmail.com> (raw)
In-Reply-To: <7BC61C18-28A7-41C7-8EC6-D2983A99C897@gmail.com>

>>  So I would like to ask: is there a clean way to disable calls to
>> org-refresh-properties?
>
> No, that would require a patch and a config variable.
>
> - Carsten
>

  I send a patch to do this. Setting this new variable to t reduced 10
seconds my agenda export time (down from 1 minute 6 seconds) as well
as the update.
  You may add a comment about what to expect if your agenda depends on
property data.


diff --git a/lisp/org.el b/lisp/org.el
index 572b797..167e7a8 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -17656,6 +17656,14 @@ is not set, the tables are not re-aligned, etc."
   :version "24.3"
   :group 'org-agenda)

+(defcustom org-agenda-ignore-properties nil
+  "Avoid updating text properties when building the agenda.
+Properties are used for effort estimation, appointments, categories.
+If you don't use these in the agenda, set it to t and it will be faster."
+  :type 'boolean
+  :version "24.3"
+  :group 'org-agenda)
+
 (defun org-duration-string-to-minutes (s &optional output-to-string)
   "Convert a duration string S to minutes.

@@ -18017,9 +18025,11 @@ When a buffer is unmodified, it is just
killed.  When modified, it is saved
 		;; this is only run for setting agenda tags from setup
 		;; file
 		(org-set-regexps-and-options)))
-	    (org-refresh-category-properties)
-	    (org-refresh-properties org-effort-property 'org-effort)
-	    (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime)
+	    (unless org-agenda-ignore-properties
+	      (org-refresh-category-properties)
+	      (org-refresh-properties org-effort-property 'org-effort)
+	      (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime)
+	    )
 	    (setq org-todo-keywords-for-agenda
 		  (append org-todo-keywords-for-agenda org-todo-keywords-1))
 	    (setq org-done-keywords-for-agenda

  reply	other threads:[~2013-08-23  9:24 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-07 20:25 Very slow performance in Org-mode on 10k line file? John Hendy
2013-08-07 21:39 ` Rainer Stengele
2013-08-07 21:47   ` John Hendy
2013-08-07 22:06     ` John Hendy
2013-08-07 22:12       ` Russell Adams
2013-08-07 22:17         ` John Hendy
2013-08-07 22:44           ` Russell Adams
2013-08-07 22:22 ` Nick Dokos
2013-08-07 22:24   ` John Hendy
2013-08-07 22:39     ` Nick Dokos
2013-08-07 23:02       ` John Hendy
2013-08-08  5:13         ` Achim Gratz
2013-08-12  3:43   ` faster agenda with properties support disabled (no org-refresh-properties) Daniel Clemente
2013-08-12  5:36     ` Carsten Dominik
2013-08-23  9:24       ` Daniel Clemente [this message]
2013-08-28  4:28         ` Samuel Wales
2013-08-28  8:28           ` Daniel Clemente
2013-08-31  5:58         ` Carsten Dominik
2013-08-31  6:22           ` Bastien
2013-09-02  5:09             ` Carsten Dominik
2013-09-02 10:54               ` Bastien
2013-09-03 12:02           ` Daniel Clemente
2013-09-03 13:21             ` Carsten Dominik

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://www.orgmode.org/

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

  git send-email \
    --in-reply-to='CAJKAhPBoecJ_5W-c6ZTZgG6HA9WEqdmHXiZGMO=PX52439kTVw@mail.gmail.com' \
    --to=n142857@gmail.com \
    --cc=emacs-orgmode@gnu.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://git.savannah.gnu.org/cgit/emacs/org-mode.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).