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 current API makes around 4-5 different calls to firebase per user. One for authentication, one for attendance, one for the timetable (we may only require this once), one for marks, and one for Moodle.
Firebase Free Plan allows around 20K writes/day. Considering a single user refreshes app about 3 times a day. A single user makes 12 requests per day. So, we can support a max of 1,666 users. This is an ideal case scenario and even then the number of users is limited to ~1700.
If we reduce the number of refreshes we can support a lot more users.
The text was updated successfully, but these errors were encountered:
The current API makes around 4-5 different calls to firebase per user. One for authentication, one for attendance, one for the timetable (we may only require this once), one for marks, and one for Moodle.
Firebase Free Plan allows around 20K writes/day. Considering a single user refreshes app about 3 times a day. A single user makes 12 requests per day. So, we can support a max of 1,666 users. This is an ideal case scenario and even then the number of users is limited to ~1700.
If we reduce the number of refreshes we can support a lot more users.
The text was updated successfully, but these errors were encountered: