mayank.12Original post
Rank 1: Thread
I want to cache listDocuments response for a given time like 1 hour to optimize appwrite function calls. How to do this. Is it supported natively or do I have to use other third party libraries?
Summary
There is no native support to cache listDocuments response with the Android SDK. You will need to manually implement a caching mechanism. One option is to use RoomDB, which is a library for local storage in Android. Another option is to modify the ARC library, which mimics RemoteConfig from Firebase and can be customized according to your needs.