Ah yes. We agree. I presume that Zack is concerned with the normal circumstance of running a racket program from the command line, but I recognize that you could do lots of creative things that will behave properly. <div><br>
</div><div>Jay<span></span></div><div><br>On Thursday, February 14, 2013, Robby Findler  wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">That is also what I meant by code (well, I was speaking generally about all bytecode). <div>
<br></div><div>The point I&#39;m making is that this is not a limitation of our runtime system, it is just because you are imagining there are still references to that bytecode.</div>
<div><br></div><div>In the specific instance you mention below, the namespace holding onto that module could become garbage. This happens in DrRacket a lot, for example.</div></div><div><br><br><div>
On Thu, Feb 14, 2013 at 7:45 AM, Jay McCarthy <span dir="ltr">&lt;<a>jay.mccarthy@gmail.com</a>&gt;</span> wrote:<br><blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
When I say &quot;code&quot;, I mean module top-level binding byte-code. There&#39;s<br>
no way for Racket to remove<br>
<br>
(define (f x) (lambda (y) (printf &quot;Gigantic string: ~a&quot; (+ x y))))<br>
<br>
at the top-level. The byte-code will always contain the gigantic<br>
string. If you ever call f and get back something, that closure could<br>
be collected, but not the source that generated it.<br>
<span><font color="#888888"><br>
Jay<br>
</font></span><div><div><br>
On Thu, Feb 14, 2013 at 6:37 AM, Robby Findler<br>
&lt;<a>robby@eecs.northwestern.edu</a>&gt; wrote:<br>
&gt; I&#39;m pretty sure code is collected in (regular) Racket. Small numbers aren&#39;t<br>
&gt; collected, true, but they also don&#39;t really take any space. Big numbers are<br>
&gt; collected, too. (I&#39;m not sure about interned symbols.)<br>
&gt;<br>
&gt; Robby<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Feb 14, 2013 at 7:26 AM, Jay McCarthy &lt;<a>jay.mccarthy@gmail.com</a>&gt;<br>
&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; In the Web server language, all anonymous functions are turned into<br>
&gt;&gt; top-level structures masquerading as functions where the fields are<br>
&gt;&gt; their free variables. For instance:<br>
&gt;&gt;<br>
&gt;&gt; (define (f x) (lambda (y) (+ x y))<br>
&gt;&gt;<br>
&gt;&gt; becomes, roughly,<br>
&gt;&gt;<br>
&gt;&gt; (struct a-lambda42 (x)<br>
&gt;&gt;  #:property prop:procedure<br>
&gt;&gt;  (lambda (the-structure y)<br>
&gt;&gt;   (define x (a-lambda42-x the-structure))<br>
&gt;&gt;   (+ x y)))<br>
&gt;&gt; (define (f x) (make-a-lambda42 x))<br>
&gt;&gt;<br>
&gt;&gt; In your program, the expression<br>
&gt;&gt;<br>
&gt;&gt; (web-cell-shadow wc-anonymous (λ (x) &#39;more-distinctive-text))<br>
&gt;&gt;<br>
&gt;&gt; becomes<br>
&gt;&gt;<br>
&gt;&gt; (struct a-lambda43 () #:property prop:procedure (lambda (s x)<br>
&gt;&gt; &#39;more-distinctive-text))<br>
&gt;&gt; (web-cell-shadow wc-anonymous (make-a-lambda43))<br>
&gt;&gt;<br>
&gt;&gt; Notice that the anonymous function has no fields because there are no<br>
&gt;&gt; free variables. The distinctive text is not shown anywhere in the URL<br>
&gt;&gt; because it is part of the code, not part of the data, of the closure.<br>
&gt;&gt;<br>
&gt;&gt; If you change the program slightly to<br>
&gt;&gt;<br>
&gt;&gt; (web-cell-shadow wc-anonymous<br>
&gt;&gt;                  (let () (define y &#39;more-distinctive-text)<br>
&gt;&gt;                       (λ (x) y)))<br>
&gt;&gt;<br>
&gt;&gt; then y is a free variable, so when you look at the URL:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; <a href="http://localhost:8000/;((%22c%22%20.%20%220((3)%204%20(((lib%20%5C%22web-server%2Flang%2Fabort-resume.rkt%5C%22)%20.%20%5C%22lifted.6%5C%22)%20((lib%20%5C%22web-server%2Flang%2Fweb-cells.rkt%5C%22)%20.%20deserialize-info:frame-v0)%20(%23%5C%22%2Ftmp%2Ft.rkt%5C%22%20.%20%5C%22lifted.1683%5C%22)%20(2%20.%20%5C%22lifted.1991%5C%22))%200%20()%20()%20(0%20(1%20(h%20-%20()%20(lifted.1485-0%20.%20this-is-a-song-about-Japan)%20(lifted.1521-1%202%20(b!%20.%20more-distinctive-text))))%20(c%20(v!%20(3)%20%23f%20%23f))))%22))" target="_blank">http://localhost:8000/;((%22c%22%20.%20%220((3)%204%20(((lib%20%5C%22web-server%2Flang%2Fabort-resume.rkt%5C%22)%20.%20%5C%22lifted.6%5C%22)%20((lib%20%5C%22web-server%2Flang%2Fweb-cells.rkt%5C%22)%20.%20deserialize-info:frame-v0)%20(%23%5C%22%2Ftmp%2Ft.rkt%5C%22%20.%20%5C%22lifted.1683%5C%22)%20(2%20.%20%5C%22lifted.1991%5C%22))%200%20()%20()%20(0%20(1%20(h%20-%20()%20(lifted.1485-0%20.%20this-is-a-song-about-Japan)%20(lifted.1521-1%202%20(b!%20.%20more-distinctive-text))))%20(c%20(v!%20(3)%20%23f%20%23f))))%22))</a><br>


&gt;&gt;<br>
&gt;&gt; You see the distinctive text.<br>
&gt;&gt;<br>
&gt;&gt; As far as GC goes, code is not generally collected in Racket anyways.<br>
&gt;&gt; Any data that is an intrinsic part of the program text (such as<br>
&gt;&gt; literal symbols and numbers) will always be around in your program<br>
&gt;&gt; whether you use #lang web-server or not.<br>
&gt;&gt;<br>
&gt;&gt; Jay<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Wed, Feb 13, 2013 at 8:34 PM, Galler &lt;<a>lzgaller@optonline.net</a>&gt; wrote:<br>
&gt;&gt; &gt; Good evening,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I&#39;ve been investigating lang web-server, performance and garbage<br>
&gt;&gt; &gt; collection<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I have a question </div></div></blockquote></div></div></blockquote></div><br><br>-- <br>Jay McCarthy &lt;<a href="mailto:jay@cs.byu.edu" target="_blank">jay@cs.byu.edu</a>&gt;<br>Assistant Professor / Brigham Young University<br>
<a href="http://faculty.cs.byu.edu/~jay" target="_blank">http://faculty.cs.byu.edu/~jay</a><br><br>&quot;The glory of God is Intelligence&quot; - D&amp;C 93<br>