Pessimistic concurrency locks data ___________.

  • Concurrently
  • Proactively
  • Reactively
  • Temporarily
Pessimistic concurrency locks data proactively, meaning it locks the data before any modification attempt is made. This approach ensures that only one transaction can access and modify the data at a time, thus preventing concurrency conflicts by holding exclusive locks on the data for the duration of the transaction.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *