[plt-scheme] Storing the result of a eval while in a continuation
Every servlet runs in a namespace which I believe is shared across
instances. Every modules is loaded exactly once in any namespace. So
you should be able to stash data away in any location that has module
level scope.
HTH,
N.
On 7/10/07, Hans Oesterholt-Dijkema <hdnews at gawab.com> wrote:
...
> It would be nice to keep the lambda closure resulting from the eval
> over continuations. It would speed up the code running in the plugin,
> because it wouldn't need to be loaded and compiled each time.
>
> Is it possible to store the code for later use (e.g. in a global Hash)?
>
> --Hans