better word choice
This commit is contained in:
parent
dab9e94605
commit
8757107d25
|
|
@ -22,7 +22,7 @@ Nodes and Flows **communicate** in two ways:
|
|||
|
||||
If you know memory management, think of the **Shared Store** like a **heap** (shared by all function calls), and **Params** like a **stack** (assigned by the caller).
|
||||
|
||||
> **Best Practice:** Use `Shared Store` for almost all cases. It's flexible and easy to manage. It separates data storage from data processing, making the code more readable and easier to maintain.
|
||||
> **Best Practice:** Use `Shared Store` for almost all cases. It's flexible and easy to manage. It separates *Data Schema* from *Compute Logic*, making the code easier to maintain.
|
||||
>
|
||||
> `Params` is more a syntax sugar for [Batch](./batch.md).
|
||||
{: .note }
|
||||
|
|
|
|||
Loading…
Reference in New Issue