Name
*DEFAULT-CACHING* — Controls the default caching behavior.Variable
Description
This variable stores the default value of the
CACHING
keyword for the select
.
Examples
(let ((*default-caching* nil)))
(select 'foo))
;; is equivalent to
(select 'foo :caching nil)
Notes
This is a CLSQL extension to the
CommonSQL API. CommonSQL has caching on at all times.