It seems like it could be more space efficient if a database was used to store the message data, rather than json dumps. Message data could be hashed to check if it already exists in the database, and if it does, an array of timestamps of when the message was seen can be added to. That way you get the same data fidelity, just in a more efficient form.
It seems like it could be more space efficient if a database was used to store the message data, rather than json dumps. Message data could be hashed to check if it already exists in the database, and if it does, an array of timestamps of when the message was seen can be added to. That way you get the same data fidelity, just in a more efficient form.