If I long pull every minute (of lets say 10 people’s streams), when i get the data, how would I:
- identify each user (so I can compare each user to themselves from the min older data)?
- create a compare statement (compare each user from online to offline)?
I was looking into JSON.stringify the old data to a .log file and caching the new data. JSON.parsing both and using const and if then to compare. I imagine I am overcomplicating the process or it wont work.