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
The statistics endpoint /api/v1/stats/submissions alongside the data endpoint /api/v1/data (when used with start and limit query params) and media count endpoints currently take a lot of time(Around 1 - 3 minute depending on server load) to compute the statistics of a given form... This leads to some unpleasant user interactions.
We should look into a way to decrease the amount of processing/query time we take for such requests in order to speed up the request times as the current wait time is too long IMO
Suggested approaches
Calculate submission stats as submissions are made(Async task post submission perhaps?) & save the statistics to cache
The text was updated successfully, but these errors were encountered:
Current situation
The statistics endpoint
/api/v1/stats/submissions
alongside the data endpoint/api/v1/data
(when used with start and limit query params) and media count endpoints currently take a lot of time(Around 1 - 3 minute depending on server load) to compute the statistics of a given form... This leads to some unpleasant user interactions.We should look into a way to decrease the amount of processing/query time we take for such requests in order to speed up the request times as the current wait time is too long IMO
Suggested approaches
The text was updated successfully, but these errors were encountered: