Do Firebase Realtime Database uses cache

Viewed 20
1 Answers

There is no way in the Realtime Database API calls or results to see whether a resulting snapshot came from the cache or from the server.

The isFromCache method from the Firestore API is not available on Realtime Database. It also doesn't necessarily do what you expect it to do, but that seems besides the point here.

Related