【数据建模】设计一个DynamoDB数据模型,用于管理图形化的层次关系 --验证访问模式
视频号
微信公众号
知识星球
Chinese, Simplified
要验证数据模型,请使用前面定义的访问模式。
Question |
Base table/GSI |
Query |
|
---|---|---|---|
1 |
作为用户,我希望检索父组件ID的所有直接子组件。 |
GSI1 |
(Find immediate children of a component.) |
2 |
作为用户,我希望检索组件ID的所有子组件的递归列表。 |
GSI1 or GSI2 |
GSI1: or GSI2: (Find all down-level child components using a top- level component. Find all down-level child components using a middle-level component.) |
3 |
作为用户,我希望看到组件的祖先。 |
Base table |
(Find ancestors of a component.) |
本文地址
https://architect.pub/design-dynamodb-data-model-managing-graphlike-hierarchical-relationship-verifying-access-patterns
- 5 次浏览
SEO Title
Design a DynamoDB data model for managing a graphlike hierarchical relationship --Verifying access patterns