jdwalker | blog

Musings in various programming languages


AWS DynamoDB Index Overloading

For the indexes in Amazon’s DynamoDB service, we can fit multiple indexes in the same attribute, as long as we split them by namespace. We can do this via use of the BEGIN_WITH operator on the sort key. We can further extends this to namespace ranges with the BETWEEN operator.

Read more...