I have an angular 9 app that needs to work with a ASP.NET Web API 2 RESTful backend without any caching happening.
I've put 'Cache-control: no-cache' header on the request coming from the frontend (using Angular's interceptors).
Am I correct in assuming that ASP.NET Web API 2 does NOT cache GET requests by default so I won't need to manually disable caching on the server side? It would make sense to me since REST is stateless but I need to be absolutely sure.
Thanks.