Update communication.md

This commit is contained in:
Zachary Huang 2025-03-15 02:07:14 -04:00 committed by GitHub
parent 4a8ad825a5
commit 6a3412b207
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ Nodes and Flows **communicate** in 2 ways:
1. **Shared Store (for almost all the cases)** 1. **Shared Store (for almost all the cases)**
- A global data structure (often an in-mem dict) that all nodes can read and write by `prep()` and `post()`. - A global data structure (often an in-mem dict) that all nodes can read ( `prep()`) and write (`post()`).
- Great for data results, large content, or anything multiple nodes need. - Great for data results, large content, or anything multiple nodes need.
- You shall design the data structure and populate it ahead. - You shall design the data structure and populate it ahead.