seanhurwitz
seanhurwitz
@ml054 6.0.0 I believe the issue is (RequestExecutor.ts):  this._cache is always defined and the method checks if(cache) cacheResponse(...) so I suggest: responseDispose = await command.processResponse(sessionInfo.noCaching ? undefined : this._cache,...
I also set maxHttpCacheSize to 0 but that doesn't help. At least this will on a per session basis. But maybe if the size is 0, it shouldn't initialise the...
node version 20.16.0
 I set that cache variable to undefined in my node_modules and it doesn't cache anymore
@ml054 I can confirm it works! Thanks. Please see to the issue though, it's tediuous to say noCaching every time
thanks. Just to clarify Store level caching: (ie maxHttpCache = 0) **DOESN'T WORK** Session level Caching (ie .openSession({noCaching:true}) **DOESN'T WORK** *** Query level Caching (.noCaching()) **_DOES WORK_** Seems the issue...