I have 3 clients. All of them want to insert items in the same database.
Whenever a client sends a request,
- I need to read the last entered record in ddb.
- Increase its id by 1.
- Push this new request in the ddb with the increased id.
What's the best aws based architecture to implement this?
What if there were 100 clients?