← Blog
I recently launched a Slack app to help with channel bloat! Simply installing it would help me out a bunch. I have 2/10 installations required to submit my app to the Slack Marketplace. Thanks for helping me reach that goal.
Concept Dump: DynamoDB
- DynamoDB - “AWS-owned NoSQL database. Pretty much a big JSON document.”
- Table - “Similar to SQL table. Abstract representation for containing similar data.”
- Item - “Data entry full of arbitrary values known as attributes. Equivalent to a row in a SQL database.”
- Partition Key - “Main identifier for an item.”
- Sort Key - “Secondary identifier for an item.”
- Scan - “Reads through all items in a table and returns those that match certain filter criteria.”
- Query - “Reads through all items with a given partition key and returns those that match certain filter criteria.”
- Single Table Design - “Pattern of putting all required data for an application or service in a single table.”
Categories:
concept dump