6 ms·
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.
by nonane 3y 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.
- 10000truths 3y agoWebSockets.
- JuanPosadas 3y agoSimple: cron job, one per minute, check for recently created (and/or updated) entries.
- andenacitelli 3y agoWebhooks 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.