<div dir="ltr">I&#39;m pretty sure code is collected in (regular) Racket. Small numbers aren&#39;t collected, true, but they also don&#39;t really take any space. Big numbers are collected, too. (I&#39;m not sure about interned symbols.)<div>
<br></div><div>Robby</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Feb 14, 2013 at 7:26 AM, Jay McCarthy <span dir="ltr">&lt;<a href="mailto:jay.mccarthy@gmail.com" target="_blank">jay.mccarthy@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">In the Web server language, all anonymous functions are turned into<br>
top-level structures masquerading as functions where the fields are<br>
their free variables. For instance:<br>
<br>
(define (f x) (lambda (y) (+ x y))<br>
<br>
becomes, roughly,<br>
<br>
(struct a-lambda42 (x)<br>
 #:property prop:procedure<br>
 (lambda (the-structure y)<br>
  (define x (a-lambda42-x the-structure))<br>
  (+ x y)))<br>
(define (f x) (make-a-lambda42 x))<br>
<br>
In your program, the expression<br>
<div class="im"><br>
(web-cell-shadow wc-anonymous (λ (x) &#39;more-distinctive-text))<br>
<br>
</div>becomes<br>
<br>
(struct a-lambda43 () #:property prop:procedure (lambda (s x)<br>
&#39;more-distinctive-text))<br>
(web-cell-shadow wc-anonymous (make-a-lambda43))<br>
<br>
Notice that the anonymous function has no fields because there are no<br>
free variables. The distinctive text is not shown anywhere in the URL<br>
because it is part of the code, not part of the data, of the closure.<br>
<br>
If you change the program slightly to<br>
<br>
(web-cell-shadow wc-anonymous<br>
                 (let () (define y &#39;more-distinctive-text)<br>
                      (λ (x) y)))<br>
<br>
then y is a free variable, so when you look at the URL:<br>
<br>
<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>

<br>
You see the distinctive text.<br>
<br>
As far as GC goes, code is not generally collected in Racket anyways.<br>
Any data that is an intrinsic part of the program text (such as<br>
literal symbols and numbers) will always be around in your program<br>
whether you use #lang web-server or not.<br>
<br>
Jay<br>
<div><div class="h5"><br>
<br>
On Wed, Feb 13, 2013 at 8:34 PM, Galler &lt;<a href="mailto:lzgaller@optonline.net">lzgaller@optonline.net</a>&gt; wrote:<br>
&gt; Good evening,<br>
&gt;<br>
&gt; I&#39;ve been investigating lang web-server, performance and garbage collection<br>
&gt;<br>
&gt; I have a question regarding anonymous functions and web cells<br>
&gt;<br>
&gt; Examples below require:<br>
&gt;<br>
&gt; #lang web-server<br>
&gt; (require racket/serialize<br>
&gt;          web-server/lang/web-cells)<br>
&gt;<br>
&gt;<br>
&gt; Constants appear serializable by their value being explicitly written out<br>
&gt;<br>
&gt;<br>
&gt; For example,<br>
&gt;<br>
&gt; (serialize &#39;this-is-a-song-about-japan)<br>
&gt;<br>
&gt; ;-&gt; &#39;((3) 0 () 0 () () this-is-a-song-about-japan)<br>
&gt;<br>
&gt;<br>
&gt; Whereas anonymous functions appear serializable by the mechanism of being<br>
&gt; &quot;lifted&quot; (i.e. reified) to a module level binding<br>
&gt;<br>
&gt; For example<br>
&gt;<br>
&gt; (serialize (λ (x) x))<br>
&gt;<br>
&gt; ;-&gt; &#39;((3) 1 ((&#39;anonymous-module . &quot;lifted.1386&quot;)) 0 () () (0))<br>
&gt;<br>
&gt;<br>
&gt; Moving the discussion to web-cells<br>
&gt;<br>
&gt; (define wc-constant (make-web-cell #f))<br>
&gt;<br>
&gt; (define wc-anonymous (make-web-cell #f))<br>
&gt;<br>
&gt;<br>
&gt; (web-cell-shadow wc-constant &#39;this-is-a-song-about-Japan)<br>
&gt;<br>
&gt; (web-cell-shadow wc-anonymous (λ (x) x))<br>
&gt;<br>
&gt;  (printf &quot; wc-constant: ~A\n wc-anonymous: ~A\n&quot;<br>
&gt;           (serialize wc-1)<br>
&gt;           (serialize wc-2))<br>
&gt;<br>
&gt; returns<br>
&gt;<br>
&gt; wc-constant: ((3) 1 (((lib web-server/lang/web-cells.rkt) .<br>
&gt; deserialize-info:primitive-wc-v0)) 0 () () (0 lifted.1534-0))<br>
&gt;<br>
&gt; wc-anonymous: ((3) 1 (((lib web-server/lang/web-cells.rkt) .<br>
&gt; deserialize-info:primitive-wc-v0)) 0 () () (0 lifted.1570-1))<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; While now both values are &#39;lifted&#39; (i.e. reified), a close examination of<br>
&gt; the URL-string sent back to a client after send/suspend/dispatch<br>
&gt;<br>
&gt; reveals that, with respect to the constant, lifted.1534 appears to be<br>
&gt; explicitly represented, elsewhere in the string as an associative pair i.e.<br>
&gt; (lifted.1534 this-is-a-song-about-Japan)<br>
&gt;<br>
&gt; whereas for the anonymous function, its not clear that its reference,<br>
&gt; lifted.1570 is explicitly represented<br>
&gt;<br>
&gt; Which leads me to wonder about whether the reference to the anonymous<br>
&gt; function, lifted.1570, is being maintained on the server,<br>
&gt;<br>
&gt; And if so, how is it being garbage collected, as its impossible to ever<br>
&gt; determine that it is unreachable.<br>
&gt;<br>
&gt; I will also point out that prior to a year ago, anonymous functions failed<br>
&gt; the serializability predicate. (serializable? anon-func) -&gt; #f. I can pull<br>
&gt; out the correspondence/background related to that if desirable.<br>
&gt;<br>
&gt; I apologize if I&#39;m just misreading the data.<br>
&gt;<br>
&gt; Here&#39;s the complete example,with a stateless web server. Note that when you<br>
&gt; inspect the url-string**for the datum this-is-a-song-about-Japan, its there,<br>
&gt; but when looking for the datum more-distinctive-text, its not present in the<br>
&gt; url-string.<br>
&gt;<br>
&gt; **right click on the link, then copy/paste, or click the &#39;click-me&#39; link and<br>
&gt; copy/paste the URL from the address bar)<br>
&gt;<br>
&gt; Thanks very much.<br>
&gt;<br>
&gt;<br>
&gt; Thanks again.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; #lang web-server<br>
&gt;<br>
&gt; (require  web-server/servlet-env)<br>
&gt;<br>
&gt; (define wc-constant (make-web-cell #f))<br>
&gt;<br>
&gt; (define wc-anonymous (make-web-cell #f))<br>
&gt;<br>
&gt;<br>
&gt; (web-cell-shadow wc-constant &#39;this-is-a-song-about-Japan)<br>
&gt;<br>
&gt; (web-cell-shadow wc-anonymous (λ (x) &#39;more-distinctive-text))<br>
&gt;<br>
&gt; (define (start request)<br>
&gt;   (letrec ((response-generator (λ (make-url)<br>
&gt;                               (response/xexpr `(html (head)<br>
&gt;                                                      (body (a ((href<br>
&gt; ,(format &quot;~A&quot; (make-url receive-request)))) &quot;click me&quot;))))))<br>
&gt;            (receive-request (λ (request)<br>
&gt;                               (response/xexpr `(html (head)<br>
&gt;                                                      (body &quot;Thank you. We<br>
&gt; are done.&quot;))))))<br>
&gt;     (send/suspend/dispatch response-generator)))<br>
&gt;<br>
&gt; (serve/servlet start<br>
&gt;                #:stateless? #t<br>
&gt;                #:launch-browser? #t<br>
&gt;                #:connection-close? #t<br>
&gt;                #:quit? #f<br>
&gt;                #:listen-ip #f<br>
&gt;                #:port 8000<br>
&gt;                #:servlet-path &quot;/&quot;)<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Thanks much.<br>
&gt;<br>
&gt; Zack<br>
<br>
<br>
<br>
</div></div>--<br>
Jay McCarthy &lt;<a href="mailto:jay@cs.byu.edu">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>
<div class="HOEnZb"><div class="h5"><br>
____________________<br>
  Racket Users list:<br>
  <a href="http://lists.racket-lang.org/users" target="_blank">http://lists.racket-lang.org/users</a><br>
</div></div></blockquote></div><br></div>