Best Way to Store a List of Numbers in DynamoDB

dynamodb

I want to store a list of 50 or less nine digit numbers for each primary key in a DynamoDB. Usually I would be using a get request to retrieve the list for a specific primary key.
Sometimes I would need to add or delete a number from the list. Would it be better to replace the whole list when changes are made or is there a way to structure the data so that individual numbers can be added or deleted. If that is possible, would it be a less efficient way of doing things even though the individual changes would be easier?

Best Answer

look up put with conditional expression attribute_not_exists so you will only put the item if it does not exist. delete single item only by parturition key and range key, not all of them. also the primary key combination must be unique anyways so you can't have duplicates.