Skip to content

Commit d40ef84

Browse files
committed
Fixed typo
1 parent cd2daf6 commit d40ef84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redimo/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ page_nav:
1919

2020
When AWS built DynamoDB they created a monster. Not necessarily the bad kind, just the kind that's incredibly powerful but ugly has hell – the kind that needs arcane incantations to make it do what you want it to do, but can destroy worlds if you tame it.
2121

22-
The API for DynamoDB is a reflection of what it is. It acts as a key-value store in that it allows you to put items into DynamoDB and get items out of it, but it also acts as a sorted B-Tree index that lets you sort items, but only if you specify a sort key along with the partition key from the key-value store paradigm. And you and query only by that one sort key, but you could set up other indexes that work on different keys, but you can't query two of them together. But if you index with a local secondary index you're doing it wrong, but then a global secondary index will cause you not to be able to read items you just wrote. And you can do transactions, but only with 25 items, and if you do you can only reference each key attribute in your item once, except that you can also add a condition for other items, but only if you're not transacting on them. This goes on for [450 pages in the book that says DynamoDB doesn't have to be complicated](https://www.dynamodbbook.com/), so there you go.
22+
The API for DynamoDB is a reflection of what it is. It acts as a key-value store in that it allows you to put items into DynamoDB and get items out of it, but it also acts as a sorted B-Tree index that lets you sort items, but only if you specify a sort key along with the partition key from the key-value store paradigm. And query only by that one sort key, but you could set up other indexes that work on different keys, but you can't query two of them together. But if you index with a local secondary index you're doing it wrong and limiting your data size, but then a global secondary index will cause you not to be able to read items you just wrote. And you can do transactions, but only with 25 items, and if you do you can only reference each key attribute in your item once, except that you can also add a condition for other items, but only if you're not transacting on them. This goes on for [450 pages in the book that says DynamoDB doesn't have to be complicated](https://www.dynamodbbook.com/), so there you go.
2323

2424
The Redis project, on the other hand, hit a sweet spot. It also has a large API, but every operation is a read from or a modification to a data structure like a key-value map, set, sorted set, list, hash-fields, geospatial sorted set, and so on.
2525

0 commit comments

Comments
 (0)