#Question about data management

11 messages · Page 1 of 1 (latest)

torpid siren
#

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.

modern moon
#

Ah, yes. This is very doable

#

I'll get back.

torpid siren
#

Alright, thanks man!

torpid siren
torpid siren
#

Hey! @modern moon

modern moon
#

Lol, sorry. Completely forgot this

#

RSS is a bit overkill imo

#

Is it a very very big set of data?

mild locust
#

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.