From: Oliver Scholz <alkibiades@gmx.de>
Subject: About performance, hash-tables and garbage collection
Date: Fri, 20 Sep 2002 19:06:38 +0200 [thread overview]
Message-ID: <m33cs4r3oh.fsf@ID-87814.user.dfncis.de> (raw)
I am currently writing a library in which the main function has an
inner loop that may run several thousand times. So I care a bit about
the performance of this inner loop.
1. I have read that hash-tables have a little overhead and that
association lists are a little bit faster, when they contain not
more than about a dozen of key-value pairs. It is _possible_ that I
have to maintain several hundreds or thousand of key/value pairs,
but in most cases it will be only a dozen or so. So my question is:
how much overhead has a hashtable? Makes it sense to add a
condition, like this:
(if (> ncolours 15)
(gethash colour colour-map)
(cdr (assoc (colour colour-map))))
2. I noticed that the garbage collector hits in a little bit too
often, though I do not know why. I have a lot of `setq'-statements
like `(setq pointer (1+ pointer))'. Is it possible that they are
the cause? If so, what could I do?
-- Oliver
--
Jour de la Raison de l'Année 210 de la Révolution
Liberté, Egalité, Fraternité!
next reply other threads:[~2002-09-20 17:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-09-20 17:06 Oliver Scholz [this message]
2002-09-20 21:07 ` About performance, hash-tables and garbage collection Stefan Monnier <foo@acm.com>
2002-09-20 23:09 ` Oliver Scholz
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=m33cs4r3oh.fsf@ID-87814.user.dfncis.de \
--to=alkibiades@gmx.de \
/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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.