You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like when we do a findAll with some query conditions, it will load the whole data from that collection and filter them on the client side. This is not scalable.
I know this is because Firebase doesn't support complex query. Therefore I don't recommend using this adapter...
The text was updated successfully, but these errors were encountered:
Yeah, right now the Firebase adapter is great for use cases where you have a small amount of data, such as app settings, user profiles, etc. Not great for data that grows a lot. There might be some improvements that can be made to this adapter to improve query time, I'll investigate.
It seems like when we do a
findAll
with some query conditions, it will load the whole data from that collection and filter them on the client side. This is not scalable.I know this is because Firebase doesn't support complex query. Therefore I don't recommend using this adapter...
The text was updated successfully, but these errors were encountered: