As i found some methods of official MongoDB's C# driver use SafeMode and return SafeModeResult. Please tell me what is this SafeMode and how to use it? Will be great to see some usecases;) For example usecase with method RemoveAll of MongoCollection class;

Thank you!!!

link|improve this question

75% accept rate
feedback

2 Answers

up vote 16 down vote accepted

Safemode is only relevant when writing to the db.

For speed, if safemode is off and a write operation fails the driver doesn't wait around to care. Net effect is no exception gets thrown and you don't know you have an error.

Safemode set to on will force the driver to wait for a success confirmation, and if an error occurred will throw an exception.

Use safemode for data you care about (user accounts, orders, etc).

Don't use safemode for data that isn't essential (logging, usage stats etc)

MongoDB's default behavior is to have safemode off.

link|improve this answer
thank you for usecases;) – Edward83 Jan 7 '11 at 8:49
feedback

From documentation:

There are various level of SafeMode, and this class is used to represent those levels. SafeMode applies only to operations that don't already return a value (so it doesn't apply to queries or commands). It applies to the following MongoCollection methods: Insert, Remove, Save and Update.

The gist of SafeMode is that after an Insert, Remove, Save or Update message is sent to the server it is followed by a GetLastError command so the driver can verify that the operation succeeded. In addition, when using replica sets it is possible to verify that the information has been replicated to some minimum number of secondary servers.

The SafeMode class has static properties and methods that let you easily access common modes or create your own:

* SafeMode.False
* SafeMode.True
* SafeMode.WaitForReplications(int n)

The value for "n" includes the primary, so typically you want n >= 2.

I hope this is enough to understand the purpose of SafeMode.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.