-
I am sure the app is capable of this, but I couldn't find any details in the documentation. Does the app "cache" data points while my phone is offline and then flush them when network is available again? If yes, how many points will be cached at max. and (how) can I changed that parameter? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes. If the app fails to send a location message, it's retried (with an exponential backoff capped at every 2 mins, I think). It will retry to send each message a fixed number of times, before dropping it and moving onto the next message. For location messages, it's actually retried effectively for a week (about 10,000 times), because there are some users who are out of network contact for multiple days. You should be able to see the size of the current location queue in the status page. The maximum size of the queue is currently 10,000 points. Neither of these two values are configurable - I'd be interested in understanding the reasons behind a desire to make them configurable? |
Beta Was this translation helpful? Give feedback.
Yes.
If the app fails to send a location message, it's retried (with an exponential backoff capped at every 2 mins, I think). It will retry to send each message a fixed number of times, before dropping it and moving onto the next message. For location messages, it's actually retried effectively for a week (about 10,000 times), because there are some users who are out of network contact for multiple days.
You should be able to see the size of the current location queue in the status page. The maximum size of the queue is currently 10,000 points.
Neither of these two values are configurable - I'd be interested in understanding the reasons behind a desire to make them configurable?