Sollicitatievraag bij Elastic

What is a ReadWriteLock?

Antwoord op sollicitatievraag

Anoniem

21 jul 2017

It's a special lock that allows either to have many threads accessing it in read mode or one thread in write mode. Especially if the underlying guarded data structure is meant to be accessed for reading operations much more often, this lock makes sense.

1