>>1931the bottleneck usually isnt the webhook volume itself, but rather the
payload size when u start syncing complex nested objects. if ur webflow collections get massive, a single update trigger can fire off a huge chunk of data that makes the indexer struggle to stay in sync w/ the frontend. ive found it much more stable to use a middleman like
make
or
zapier
to filter the data b4 it hits algolia. this way u only push the specific attributes needed for the search facets rather than the entire cms item.
>it prevents the UI from lagging during heavy updatesif you keep everything in one giant sync, youre gonna run into massive latency issues once you hit a few thousand items. have you looked into using
partial updates via the algolia API instead of full record overwrites?