zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@zsh.org
Subject: Re: "Once-a-day" long delay before startup
Date: Sun, 14 Aug 2011 11:06:02 -0700	[thread overview]
Message-ID: <110814110602.ZM14155@torch.brasslantern.com> (raw)
In-Reply-To: <20110814145749.GA6341@andrew.cmu.edu>

On Aug 14, 10:57am, gi1242+zsh@gmail.com wrote:
}
} I notice that about every so often (at least once a day) when I open a
} new shell, my hard disk spins for 15 secs or so before zsh starts.

Per Vincent's remarks, you should determine whether the delay comes
before zsh even begins reading its startup files, or sometime during.

} Would anyone know what the problem is? I'm guessing it's from
} reading/recreating the completion cache.

If by "the completion cache" you mean the ~/.zcompdump file, I'd say
that's unlikely to be related.  However, it could have to do with
building the command hash table (scanning the directories in $path),
particularly if you have run some sort of memory-intensive operation
that may have caused the kernel to flush out part of its filesystem
cache.  There are various setopts to encourage that scan to be done
incrementally, but if your startup files include external commands
that are found in directories toward the end of the search path, all
the preceding directories are likely to get scanned anyway.

You might try placing

    unsetopt hashcmds hashdirs hashlistall

at the beginning of ~/.zshenv and make sure you don't set any of those
nor correct and correctall until as late as possible in ~/.zshrc.  This
will help assure that the hash table is not rebuilt during startup file
processing (unless of course you're explicitly "rehash"ing somewhere)
and is never built during non-interactive scripts.

Of course if /etc/zshenv is doing something intensive that's not going
to help.

The hashlistall option mostly applies to compctl, not compsys, so you
can probably leave it unset.


  parent reply	other threads:[~2011-08-14 18:06 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-14 14:57 gi1242+zsh
2011-08-14 15:36 ` Vincent Lefevre
2011-08-14 17:32   ` Vincent Lefevre
2011-08-14 18:06 ` Bart Schaefer [this message]
2011-08-18 22:08 ` Piotr Karbowski
2011-08-19  2:03   ` gi1242+zsh
2011-08-19  4:05     ` Bart Schaefer
2011-08-19  9:08       ` Vincent Lefevre
2011-08-19 17:58         ` Bart Schaefer
2011-08-20  0:47       ` gi1242+zsh
2011-08-20  7:01         ` Bart Schaefer
2011-08-19  3:52   ` Bart Schaefer
2011-08-19  8:36     ` Vincent Lefevre
2011-08-19  9:05     ` Piotr Karbowski

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

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

  git send-email \
    --in-reply-to=110814110602.ZM14155@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@zsh.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.vuxu.org/mirror/zsh/

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 NNTP newsgroup(s).