dynamodb

仓库创建 2019年5月19日最近提交 21 天前SkillHot 收录 20 天前
▸ 精选理由

适合需要高可用低延迟存储的应用,包含实用的单表设计与优化建议。

▸ 风险提示

需 AWS 权限,数据变更或容量误配可能导致数据丢失或费用激增。

这个 Skill 做什么

关于设计表结构、查询、索引与性能优化的 AWS DynamoDB 操作指南。

提供 DynamoDB 的表设计、查询模式、索引和性能调优建议,帮你把 NoSQL 模型做得既高效又可扩展。在设计表结构、实现 single-table、配置分区键/二级索引、管理容量或定位性能瓶颈时会用到。特别强调常见模式和最佳实践,能把抽象的性能问题拆成可操作的方案和示例。

▸ 展开 SKILL.md 英文原文

AWS DynamoDB NoSQL database for scalable data storage. Use when designing table schemas, writing queries, configuring indexes, managing capacity, implementing single-table design, or troubleshooting performance issues.

数据与抓取DynamoDBNoSQL表设计性能通用
1.1k
Stars
443
Forks
18
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/itsmostafa/aws-agent-skills/main/skills/dynamodb/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/itsmostafa/aws-agent-skills/main/skills/dynamodb/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# AWS DynamoDB

Amazon DynamoDB is a fully managed NoSQL database service providing fast, predictable performance at any scale. It supports key-value and document data structures.

## Table of Contents

- [Core Concepts](#core-concepts)
- [Common Patterns](#common-patterns)
- [CLI Reference](#cli-reference)
- [Best Practices](#best-practices)
- [Troubleshooting](#troubleshooting)
- [References](#references)

## Core Concepts

### Keys

| Key Type | Description |
|----------|-------------|
| **Partition Key (PK)** | Required. Determines data distribution |
| **Sort Key (SK)** | Optional. Enables range queries within partition |
| **Composite Key** | PK + SK combination |

### Secondary Indexe
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有