-
|
Hi, first of all love the project! I've been using it with both small and massive amounts of jobs and it handles it beautifully. I'm having some difficulty implementing a specific use case and I hope you have time to guide me. I am using an external API that is cached. It returns an Expires header that describes when the data is refreshed. In order to scrape this efficiently, I want to call this API whenever the data refreshes, but no more than that (barring some rare fault where a job might get re-run). I have tried multiple approaches but I always end up either having duplicate jobs or missing jobs. The latest attempt I have is using There is a periodic job that inserts all the necessary For some reason the job insertion is skipped as duplicate. I think there is some kind of finalization aspect where even though I'm calling Other approaches I've tried:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Looks like this ended up being user error. I had only |
Beta Was this translation helpful? Give feedback.
Looks like this ended up being user error. I had only
ByArgswhen inserting the periodic job so the unique check would fail as expected. Thanks again for the project.