From a8bd547d9c5287aa7ca187c40e7f8243bdcd3ee5 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Fri, 29 May 2009 20:18:55 +0000 Subject: [PATCH] Note for use of statless servlets svn: r15011 --- collects/web-server/scribblings/web-server.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/web-server/scribblings/web-server.scrbl b/collects/web-server/scribblings/web-server.scrbl index 6e9ae71e8a..24f9e16a40 100644 --- a/collects/web-server/scribblings/web-server.scrbl +++ b/collects/web-server/scribblings/web-server.scrbl @@ -11,7 +11,7 @@ This manual describes the PLT libraries for building Web applications. @secref["servlet"] and @secref["stateless"] describe two ways to write Web applications. @secref["servlet"] use the entire PLT Scheme language, but their continuations are stored in the Web server's memory. -@secref["stateless"] use a slightly restricted PLT Scheme language, but their continuation can be stored by the Web client or on a Web server's disk. +@secref["stateless"] use a slightly restricted PLT Scheme language, but their continuation can be stored by the Web client or on a Web server's disk. If you can, you want to use @secref["stateless"] for the improved scalability. The @secref["http"] section describes the common library function for manipulating HTTP requests and creating HTTP responses. In particular, this section covers cookies, authentication, and request bindings.