This commit is contained in:
zachary62
2024-12-28 23:12:26 +00:00
parent 93a59b9415
commit a9288f3fef
+1 -1
View File
@@ -28,7 +28,7 @@ If you know memory management, **Shared Store** is like a **heap** shared across
A shared store is typically an in-mem dictionary, like:
```python
shared = {"data": {}, "summary": {}, "config": {...}, ...}
```python
```
It can also contain local file handlers, DB connections, or a combination for persistence.
We recommend deciding the data structure or DB schema in advance based on your app requirements.