Hello, I'm currently coding an application wich will be used by 23 persons/computers at the same time. There may be some offline, but at some point it could be 23.
I don't know if this is the best way of doing this, but I need to update a file in dropbox, with the current datetime, so I would know the last connection time of the 23 clients.
Each client writes to an individual file, so I can read the files separately and then I'll know which ones are online.
All the 23 instances of the app writes after each 60 seconds, but I'm getting this message: too_many_write_operations/
Why? and how can I solve it?