Hi, I have a question about the Kendo Grid control, in my application, I have one kendo grid using wrappers (MVC) on one page and everything works fine but I have noticed a couple of issues with it. When I click on the "go to next page or go to previous page" button Read kendo property is being fired which calls the action result method on my controller; in my case, is one simple stored procedure that returns X number of data, for one user this will work fine but it will not do so if 20 users or more are doing the same thing at the same time. This issue is not exclusive with the paging or sorting but everything including filtering, refresh button, etc. So my question is if there is any way to cache the data (store the data in memory) and filter this data instead of reading the data from the stored procedure each time.