Let’s say I have a query that is run all 15min.
I just need to know if the resulting data have been modified since the last fetch.
So I though to get a hash from the result to be able to compare.
I know how to hash a single record, but I have no idea to do it for multiple records.
- Is it a best practice to hash an entire queryset ?
- How can I do it ?
TRIGGERs seem to be the closest solution