From: Nikita Karetnikov <nikita@karetnikov.org>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: bug-guix@gnu.org
Subject: Re: Faster!
Date: Mon, 04 Feb 2013 14:12:20 -0500 [thread overview]
Message-ID: <87fw1byjti.fsf@karetnikov.org> (raw)
In-Reply-To: <87622dgfgj.fsf@gnu.org> ("Ludovic Courtès"'s message of "(unknown date)")
[-- Attachment #1: Type: text/plain, Size: 910 bytes --]
While we are at it, will it be better to rewrite 'fold-packages' and
similar things (like 'search') using streams?
For example:
#:use-module (ice-9 streams)
[...]
(define (fold-packages-lazy proc init)
"Call (PROC PACKAGE RESULT) for each available package, using INIT as
the initial value of RESULT."
(stream-fold
(lambda (module result)
(stream-fold (lambda (var result)
(if (package? var)
(proc var result)
result))
result
(list->stream
(module-map (lambda (sym var)
(false-if-exception (variable-ref var)))
module))))
init
(list->stream (package-modules))))
'time' shows that the above is a bit slower than the current version.
Will it be faster when we have more packages? What about memory?
[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]
next prev parent reply other threads:[~2013-02-04 19:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-29 23:15 Faster! Ludovic Courtès
2013-01-30 20:47 ` Faster! Andreas Enge
2013-01-30 21:04 ` Faster! Ludovic Courtès
2013-01-30 21:17 ` Faster! Andreas Enge
2013-01-30 22:04 ` Faster! Ludovic Courtès
2013-01-30 22:09 ` Faster! Andreas Enge
2013-01-30 22:51 ` Faster! Ludovic Courtès
2013-01-31 22:22 ` Faster! Ludovic Courtès
2013-02-04 19:12 ` Nikita Karetnikov [this message]
2013-02-04 21:37 ` Faster! Ludovic Courtès
2013-03-16 16:43 ` Faster! Ludovic Courtès
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=87fw1byjti.fsf@karetnikov.org \
--to=nikita@karetnikov.org \
--cc=bug-guix@gnu.org \
--cc=ludo@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 external index
https://git.savannah.gnu.org/cgit/guix.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.