I am using Parse with Android. I was using ParseQueryAdapter's API for querying and getting back results from the Parse database. However, the default queries cannot filter the content in the way I want and I am implementing a Parse Cloud Code function to get me the ParseObjects instead. The problem is that by using Cloud Code I have to give up all optimisations build in ParseQueryAdapter, especially cache-ing of results and pagination.
Can someone provide me a way to implement cache-ing for ParseObjects returned through Cloud Code? Thanks in advance!