Meanings of error codes. #367
Replies: 3 comments 5 replies
-
Yeah, I have a ticket to make a better explanation for those. I'll get around to it at some point. It looks like you're likely getting an error that we can't really help with without actually seeing your project possibly. This is where that generic error comes up. What are you trying to do when that error occurs? |
Beta Was this translation helpful? Give feedback.
-
Generally speaking, I don't think you'd want to do that - you're using Firestore? You're going to have a massive bill if you keep on with it. Firestore is not for repeated things like that, because it requires two round-trips that can be expensive in order to get the data. If you're really trying something like that, I'd recommend the realtime database instead. You can't use arrays (in the strictest sense) with it, but you get array-like things and it's always up-to-date, so you don't have to constantly ping in order to get it again; it will just always be what you want eventually. |
Beta Was this translation helpful? Give feedback.
-
Though I need help on retrieving data from realtime database. You've explained pushing data but not pulling. |
Beta Was this translation helpful? Give feedback.
-
I've been looking through the code but I'm having a hard time understanding what error code means what.
[Firebase Error] >> Action in error was: 0
[Firebase Error] >> Unknown error
Like here. I'd appreciate if anyone explains these error codes.
Beta Was this translation helpful? Give feedback.
All reactions