This commit is contained in:
zachary62 2024-12-28 23:12:26 +00:00
parent 93a59b9415
commit a9288f3fef
1 changed files with 1 additions and 1 deletions

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: A shared store is typically an in-mem dictionary, like:
```python ```python
shared = {"data": {}, "summary": {}, "config": {...}, ...} shared = {"data": {}, "summary": {}, "config": {...}, ...}
```python ```
It can also contain local file handlers, DB connections, or a combination for persistence. 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. We recommend deciding the data structure or DB schema in advance based on your app requirements.