I've just started on Amazon SimpleDB (first experience with noSQL), and while setting my first User domain, and adding the first item (with attributes id and name), i wondered what should the item name be?
- Like RDBMS ids: "1", "2", "3" (so i should keep a count somewhere)
- Uuids
- More readable: "user_1", "user_2"
Will I be querying mostly by the item name? in this case is the item name equivalent to the id, therefore I don't need the id attribute?