A no-cache directive (Cache-Control: no-cache, no-transform) is returned in responses by default, precluding proxies and caches from caching or transforming responses. This may be customized in the following manner:
   # http.response.cacheControl={cache-directive}, {cache-directive}, ...
   http.response.cacheControl=max-age=60, no-transform
	
			
<?xml version="1.0" encoding="UTF-8"?>
<rs:sqlResource xmlns:rs="http://restsql.org/schema"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://restsql.org/schema SqlResource.xsd ">
   <query>
      ...
   </query>
   <metadata>
      ...
   </metadata>
   <http>
      <response cacheControl='private, community="UCI"' />
   </http>
	
			Note: Cache control directives on requests are ignored.
See Section 14.9 of RFC 2616 for more detail on cache control.