Pregunta de entrevista de Elastic

What is a ReadWriteLock?

Respuesta de la entrevista

Anónimo

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