Hello, I’m trying to understand the differences between data fetching methods. I was wondering about data loss during connection interruptions either by net failure or by reaching limits of account.
Supose I would like to have my fitered data really up to date. Using a streaming connection with a websocket, when I resume a streaming line after a pause, will I lose those interactions in between the start of the pause and the begining of the resume? Will those interactions be buffered for a moment?
Should I use pushing method for this instead of streaming?
Thanks