top | item 37523929

(no title)

nonane | 2 years ago

Any suggestions to alternative to webhooks? I feel a ‘pull’ based model with cursors and long polling would be simpler and more reliable than webhooks.

discuss

order

andenacitelli|2 years ago

Webhooks tend to make a lot more sense in event-driven applications . They introduce additional complexity when it comes to all sorts of edge cases - agree that a pull system is probably much easier to do error handling for, my only concern would probably be performance.

JuanPosadas|2 years ago

Simple: cron job, one per minute, check for recently created (and/or updated) entries.