<users@racket-lang.org>Hi,

    I ran the following example, and I found "scribble" used ~500M memory.
    I happened to have a document which has ~100 images. My server with 16G
memory cannot afford it.

    a.jpg is 40kbytes, 480x500.

Best Regards
WCY

----------------- example as below in BASH ---------------------

(
cat <<EOF
#lang scribble/manual
@(require scribble/eval)

@title["hello world"]
EOF
N=30
for((i=0;i<N;i++));do
    cat <<EOF
@(examples
       (require racket/snip)
         (require racket/class)
       (make-object image-snip% "a.jpg"))

EOF
done
) > x.scrbl
scribble x.scrbl
_________________________________________________
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/users

Reply via email to