<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 9/25/2014 6:26 PM, Jay McCarthy
      wrote:<br>
    </div>
    <blockquote
cite="mid:CAJYbDamsu2F=97vnZJQdx2dRO-Ss46NU0icrf8XwNA_2mMg9gw@mail.gmail.com"
      type="cite">
      <pre wrap=""><font color="#006600">web-server/servlet is NOT shared, nor is any net library or common
racket library like racket/list. They are all totally unique per
servlet.

This, by the way, is part of why I don't recommend using dynamic
servlets at all and suggest using serve/servlet.</font>
</pre>
    </blockquote>
    <br>
    But ... IIUC ... a listener started by  serve/servlet  will still
    dynamically load from <servlet-root>,
    <server-root>/htdocs/*, etc. if the request doesn't match a
    hard coded dispatch URL - the regex of the initial servlet or an
    entry in a dispatcher table.  At least that's the behavior I see
    with my own application: my initial servlet returns 404 when called
    - the call to  serve/servlet  just sets up the environment and and
    all the "real" servlets are demand loaded from disk when first
    touched.<br>
    <br>
    Are you advocating *static* linking and essentially just dispatching
    to internal functions by URL?  ISTM that that defeats the purpose.<br>
    <br>
    George<br>
  </body>
</html>