> ## Content Index
> Fetch the complete content index at: https://www.namastesalesforce.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# 02 · Record-triggered flows done right
- URL: https://www.namastesalesforce.com/courses/flow-mastery/record-triggered-flows-done-right/
- Published: 2025-09-12T09:00:00.000Z
- Updated: 2025-09-12T09:00:00.000Z
- Description: Build one alongside the video: tight entry conditions, before-save vs after-save, and the update that cannot recurse.
- Author: Swarnil Singhai
- Tags: Flow Builder Mastery, #lesson, #lesson-type-video, #duration-30m, #lesson-layout-cinema, #Import 2026-09-03 19:13

Build one alongside the video: tight entry conditions, before-save vs after-save, and the update that cannot recurse.

## Entry conditions are your governor limit

A flow that fires on every edit of every Account is a tax on the whole org. Entry conditions keep it to the records that matter — set them first, always.

## Before-save when you can

Before-save flows update the triggering record with no extra DML and run an order of magnitude faster. Reach for after-save only when you must touch other records.

## Practice in your org

- Open your Developer Edition org and follow along step by step
- Change one thing at a time and note what happens
- When something breaks, read the error before searching for it