What is the recommended approach for validating for uniqueness when creating new aggregates?
The concept is called Set Validation: http://codebetter.com/gregyoung/2010/08/12/eventual-consistency-and-set-validation/ . Validate the uniqueness against an immediately consistent datastore (eg. database table with unique constraint on the userid column) before dispatching the command.
Jorg