RwLock
on some systems such as Linux, suffers from the writer starvation problem. It's a situation when readers continually access the shared resource, and writer threads never get the chance to access the shared resource. (Rahul Sharma, Vesa Kaihlavirta, et al, 2019, The Complete Rust Programming Reference Guide)
What implications does it have if Linux is my primary target? Is there any method to prevent writer starvation?