So, I retrieve JSON data every x-time and would like to store that data to be able to get a feed of the data and update it with the new retrieved data frequently, the new data that might contain already-stored data which I don't want to duplicate.
What I want to do with is being able to "alert" for every single item retrieved that isn't already in the stored data.
#Question about data management
11 messages · Page 1 of 1 (latest)
Alright, thanks man!
I just got to know about RSS Flux, would that be a great option?
The current version of the RSS 2.0 specification (2.0.11), published on March 30, 2009.
Hey! @modern moon
Lol, sorry. Completely forgot this
RSS is a bit overkill imo
Is it a very very big set of data?
If the retrieval is an action, you can do a reduce on the two datasets, but depending on the size of the data that might not be the best action.
Since this is polling, is there not a way for you to only poll data that came in after your last request? Eg. If it's your own data, you should be able to make this happen.