Folks, I have a DynamoDB table where the HashKey is EmailAddress and RangeKey is a Date... For example:
Hash Key Range Key
[email protected] Thu, 03 Oct 2013 14:55:44 GMT
[email protected] Thu, 03 Oct 2013 14:48:12 GMT
Now, I would like to query the database to return a list of emails that have been inserted after a certain time :) Is this possible? I am starting to think that my Hash Key should be something different, and have another field which stores the Email address itself...
Thanks!