Version: 4.1.4
2.12.2 No Continuations
(require web-server/managers/none) |
"managers/none.ss" defines a manager constructor:
(create-none-manager instance-expiration-handler) → manager? |
instance-expiration-handler : expiration-handler/c |
This manager does not actually store any continuation or instance data. You could use it if you know your servlet does not use the continuation capturing functions and want the server to not allocate meta-data structures for each instance.
If you do use a continuation capturing function, the continuation is simply not stored. If the URL is visited, the instance-expiration-handler is called with the request.
If you are considering using this manager, also consider using the Web Language. (See Stateless Servlets.)