eolas/zk/DynamoDB.md

21 lines
380 B
Markdown
Raw Normal View History

2024-06-09 17:30:03 +01:00
---
id: xowl
title: DynamoDB
2024-06-10 07:30:04 +01:00
tags: [AWS]
2024-06-09 17:45:04 +01:00
created: Sunday, June 09, 2024
2024-06-09 17:30:03 +01:00
---
2024-06-09 17:45:04 +01:00
# DynamoDB
2024-06-09 17:30:03 +01:00
2024-06-10 07:30:04 +01:00
## Data structure
Data is stored as a table of key-value pairs. This doesn't mean there are single
values corresponding to each key. There can be multiple columns for each key and
the key itself is also a column.
DynamoDB is "NoSQL" because it does not support
2024-06-09 17:30:03 +01:00
2024-06-10 07:30:04 +01:00
## Usage
## Related notes