I'm using mod_lisp along with the modlisp-clisp.lisp file at http://www.fractalconcept.com/fcweb/download/modlisp-clisp.lisp. I want to load different packages based on the server-id field so I can have different sites set up. I was trying to do this with
(server-id:fetch-content request)
with server-id quoted and unquoted, but it couldn't find the package. Some document-hunting found me find-package, but when I do
((find-package server-id):fetch-content request)
it says
(FIND-PACKAGE SERVER-ID) should be a lambda expression.
How can I load a package given the package name as a string?