InterviewSolution
Saved Bookmarks
| 1. |
What do you understand by multi-version concurrency control? |
|
Answer» MVCC or Multi-version concurrency control is USED for avoiding unnecessary database LOCKS when 2 or more requests tries to access or modify the data at the same TIME. This ENSURES that the time lag for a user to log in to the database is avoided. The transactions are RECORDED when anyone tries to access the content. For more information regarding this, you can refer here. |
|