Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!usc!apple!bbn.com!jpalmucc From: jpalmucc@bbn.com (Jeff Palmucci) Newsgroups: comp.lang.lisp Subject: Re: Hash-table saving Message-ID: <64095@bbn.BBN.COM> Date: 9 May 91 15:30:45 GMT References: <1991May03.092609.16721@kub.nl> Sender: news@bbn.com Lines: 12 pberck@kub.nl (Peter Berck) writes: >How can a save a hash-table to disk? I tried the obvious >(print *hash-table* my-stream) but this didn't work. It would just >save "#" to disk. (It contains about 10000 >entries). In Lucid, you can (princ "(Setq *hash-table* #.*hash-table*)" my-stream) and then (compile-file my-file). The binary version will have an image of the hash table. With symbolics, use sys:dump-forms-to-file. Jeff