Domanda di colloquio di Elastic

What is a ReadWriteLock?

Risposta di colloquio

Anonimo

21 lug 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