Caveman.Context - Managing current state for each request.

SYNOPSIS

;; In the controller.  
 
;; Get context object.  
(context)  
;=> #<HASH-TABLE :TEST EQL size 0/60 #x3020025FF5FD>  
 
;; Access to each value.  
(context :hoge)  
;=> "Something set to :hoge."  
 
;; Set to context  
(setf (context :hoge) "hogehoge") 

DESCRIPTION

Caveman.Context is for managing current state for each request. It is called "Context" in Caveman.

Specifically, context is a hash table in global scope. you can access it with a function `context'. See SYNOPSIS for details.

AUTHOR

EXTERNAL SYMBOLS