We're building a React.js web application, and we have been using RTK Query as a tool for API calls because it is convenient to use. However, we have noticed that the state of each API call is stored globally.
Given the large number of API calls we have, I am worried about the potential impact on performance.
Is there a way to use RTK Query without storing the state globally?
I tried to search for other ways but failed to find some answers.