MongoDB: db.fsyncLock() method
db.fsyncLock
The db.fsyncLock() method is used to force the mongod to flush all pending write operations to the disk and locks the entire mongod instance to prevent additional writes until the user releases the lock with the db.fsyncUnlock() command. db.fsyncLock() is an administrative command.
Syntax:
db.fsyncLock()
This function locks the database and create a window for backup operations.
Example: MongoDB: db.fsyncLock() method
db.fsyncLock();
Sample document in the restaurants collection:
Output:
> db.fsyncLock(); { "info" : "now locked against writes, use db.fsyncUnlock() to unlock", "seeAlso" : "http://dochub.mongodb.org/core/fsynccommand", "ok" : 1 }
Retrieve the restaurants data from here
Previous:
db.dropDatabase() method
Next:
db.fsyncUnlock() method
- New Content published on w3resource:
- HTML-CSS Practical: Exercises, Practice, Solution
- Java Regular Expression: Exercises, Practice, Solution
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework