[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Garbage Collection with 4 RAM (HELP!!)



>I am saving the application without the compiler.  But I was
>wondering if there were any more memory-saving tricks I could
>try

Here are some space hogs we remove when "shaking" our application:

(setq ccl::*fred-special-indent-alist* nil
      ccl::%source-files% (make-hash-table :test #'eq)
      ccl::%documentation (make-hash-table :test #'eq)
      ;dfs::*all-file-sets* nil
      *arglist-on-space* nil)

You might also look at help strings if your space is very limited.

e