What does “Update equations behind the scenes” actually mean?

What does “Update equations behind the scenes” actually mean?
Consequences, Pros and cons, please.

Hey @Peter

When creating or updating a record, the option to update equations behind the scenes means that any equations will be sent to a queue for processing. This is beneficial when you value speed of the creation/edit over immediate access to equations being calculated. Here’s an example using a Form Component.

Normal Processing
Field A = 5
Field B = 5
Field C is an equation that adds A + B. This equation needs to be calculated and seen right away. The Form Component will show until the equation value is processed and then finalize the submission.

Updating Equations Behind The Scenes
Field A = 5
Field B = 5
Field C is an equation that adds A + B. This calculation is sent to a queue to be processed. The Form is submitted and reset immediately - allowing the User to move on to something else. The true result of the calculation may take up to 2-3 minutes to be seen.

2 Likes