I'm a teacher and our school just bought Chromebooks for every student. I wrote a typing program with the thought of having the students at my school use it, but I realized that would be 600 connections if all the teachers in the school typed at the same time.
I have a typing program where Firebase is used as a traditional database. The only time the Firebase receives a change is when users login or when they pass a typing test to update their profile as having passed the lesson.
Looking for a solution, I looked at the Firebase.goOffline method, and it seemed I should be able to have the students login, go offline, and then Firebase.goOnline() after they pass the test and then update their information to the database, and immediately go offline again. Would this be appropriate or am I missing something?
If this is a poor question, I apologize, but I wanted to ask before a few dozen students tomorrow lost all of their typing work because I changed the code on them inappropriately.