seanhurwitz

Results 6 comments of seanhurwitz

@ml054 6.0.0 I believe the issue is (RequestExecutor.ts): ![image](https://github.com/user-attachments/assets/45784d27-223c-4d0b-8168-60eb57515951) 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...

![image](https://github.com/user-attachments/assets/e4b279b3-4cf7-461b-9427-f1bdb784d8eb) 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...