Currently, I'm thinking of how to search a keyword within a string of text (e.g. search "happy" inside the string "I'm a very happy man" and return to me that text) using AWS DynamoDB. Is there a way to query this?
What I know of is that Query allows "begin with" or "between" which doesn't really help me in this case.
Also, lets say i have a million records in the table "A", is it easy to migrate data into a different table "B"/"C" if I break up table "A"?
Thanks in advance!
It sounds like what you are looking for is the Contains condition:
You didn't specify how you where querying DynamoDB, so unfortunately I can't give you a specific example. However, if you were using java, you would probably use a QueryFilter.
Your second question seems to have already been answered.