From 5a0afeef370805f94ad3d74c6c3b6ebbd4e26e58 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 21 Apr 2013 10:17:43 -0400 Subject: Plugging some gaps in the manual --- doc/manual.tex | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/manual.tex b/doc/manual.tex index 0af87d8e..8acba6d2 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -152,7 +152,8 @@ Here is the complete list of directive forms. ``FFI'' stands for ``foreign func \item \texttt{limit class num} sets a resource usage limit for generated applications. The limit \texttt{class} will be set to the non-negative integer \texttt{num}. The classes are: \begin{itemize} \item \texttt{cleanup}: maximum number of cleanup operations (e.g., entries recording the need to deallocate certain temporary objects) that may be active at once per request - \item \texttt{database}: maximum size of database files (currently only used by SQLite) + \item \texttt{clients}: maximum number of simultaneous connections to one application by web clients waiting for new asynchronous messages sent with \texttt{Basis.send} + \item \texttt{database}: maximum size of a database file (currently only used by SQLite, which interprets the parameter as a number of pages, where page size is itself a quantity configurable in SQLite) \item \texttt{deltas}: maximum number of messages sendable in a single request handler with \texttt{Basis.send} \item \texttt{globals}: maximum number of global variables that FFI libraries may set in a single request context \item \texttt{headers}: maximum size (in bytes) of per-request buffer used to hold HTTP headers for generated pages @@ -262,6 +263,8 @@ sqlite3 path/to/database/file