Here is what I found out abt the seedlist (from
http://www.mongodb.org/display/DOCS/Replica+Set+Tutorial)
"Most of the MongoDB drivers are replica set aware. The driver when
connecting takes a list of seed hosts from the replica set and can
then discover which host is primary and which are secondary (the
isMaster command is used internally by the driver for this). With this
complete set of potential master nodes, the driver can automatically
find the new master if the current master fails. See your driver's
documentation for specific details."
Does this mean that when starting a new node, if I specified a seed
list, the node will automatically find the Master and register itself
with the Master node (so that there is no need to do rs.add() at the
Primary)