Question
cacheRegion with query service?
In CF10, is there a way to set the cache region when using cfscript query functions?
For example:
sqlString = 'select * from dual';
qs = new query();
qs.setName('testME');
qs.setcachedwithin(createTimespan(0,0,5,0));
qs.setAttributes('cacheRegion', 'users'); //This doesnt seem right?
