ReadWriteLock vs ReentrantLock

  Рет қаралды 82,357

Defog Tech

Defog Tech

Күн бұрын

Пікірлер: 52
@karthikrangaraju9421
@karthikrangaraju9421 4 жыл бұрын
I like the way you visualize every concept! A picture speaks a thousand words. I'm looking forward to Basic Java interview videos, more distributed systems videos, Apache tomcat architecture, spring boot and spring basic intros!!!
@饶泽海
@饶泽海 4 жыл бұрын
You are a talented teacher - thank you very much!
@hyperborean72
@hyperborean72 3 жыл бұрын
(almost) crystal clear explanation of the differences
@mahendharb5303
@mahendharb5303 6 жыл бұрын
Great channel I'm sharing this channel to my colleagues also
@DefogTech
@DefogTech 6 жыл бұрын
Thank you for the support!
@RohitKumar-hx9ur
@RohitKumar-hx9ur 4 жыл бұрын
one of the best stuff found till date. gone through all concurrency videos it is awesome. suggest u to create same in other topics like JVM , OOPS , EXCEPTION HANDLING in real-time.
@marcinkurek2950
@marcinkurek2950 5 жыл бұрын
Very informative, thank You!
@naveensharma9834
@naveensharma9834 5 жыл бұрын
Nice information, good to know being a java developer. Though I want to ask how these locks will behave when its multi server application. I meant when book seat requests can go on any server. Lets say (R - Request , S - Server) R1 -> S1 R2-> S2 R3-> S3 so on (All are writer threads) And all these server will access same db/seatchart.
@DefogTech
@DefogTech 5 жыл бұрын
Good question. Java locks cannot help with that use-case. We will need to use DB locks or some kind of distributed locks like from Redis
@vhxhao
@vhxhao 3 жыл бұрын
Nice and simple explanation!
@hyperborean72
@hyperborean72 4 жыл бұрын
@6:20 why do you call readResource/writeResource on an instance of the class? why not to make those methods static? in case of ReentrantLock you had that method static
@vbar-ukr
@vbar-ukr 3 жыл бұрын
Awesome explanation!
@atmiksoni5859
@atmiksoni5859 5 жыл бұрын
Please preparte video on transacation and propagation and also some algorithm
@sharanyarai378
@sharanyarai378 6 жыл бұрын
Please clarify why would i need read lock or any lock when i am not going to change the state of object/shared resource?
@DefogTech
@DefogTech 6 жыл бұрын
If other thread is modifying the state, the thread reading the state can get incorrect value / partial value (not stale value) because writing a field is not atomic operation. This even for reading a read lock it's required
@NexusWorldPulse
@NexusWorldPulse 5 жыл бұрын
Superb and Informative ....thank you !!!
@shivendratiwari3238
@shivendratiwari3238 2 жыл бұрын
Please make a video on Object and Class Level Locking
@protyaybanerjee5051
@protyaybanerjee5051 3 жыл бұрын
So, in the code path, that allows to read state, why would I need to have LOCKS in there ? That's an overhead. Can you explain with an example ?
@sagarshekhar6296
@sagarshekhar6296 6 жыл бұрын
As per the video, it is clear that in ReadWrite Lock, one or more threads can read simultaneously and only one thread can write at a time. My concern is, why is it said to be ReentrantReadWriteLock instead of simply ReadWrite Lock.?
@DefogTech
@DefogTech 6 жыл бұрын
Because same as Reentrant lock with this lock also, the thread can re-enter the block when it already owns the lock
@AmanGarg95
@AmanGarg95 6 жыл бұрын
Thank you. Helpful.
@DefogTech
@DefogTech 6 жыл бұрын
You're welcome! Happy it helped
@aneksingh4496
@aneksingh4496 5 жыл бұрын
Can u please make a video on Stamped Lock
@_abhishekmj_
@_abhishekmj_ 3 жыл бұрын
How do they do in BookMyShow ? We can both read and update at same time ..
@hyperborean72
@hyperborean72 4 жыл бұрын
can you please explain why Reentrant Lock does work only when all the thread write to the same resource? Is this the condition - they all have to write? or the condition - they all have to do the same operation (it can be read as well)?
@maybeyesterday
@maybeyesterday 2 жыл бұрын
shouldnt the locks be static, am i wrong?
@azeemmohammed6284
@azeemmohammed6284 5 жыл бұрын
Can u explain event driven with debezium and push the changes to elastic search
@dowlathbashag65
@dowlathbashag65 5 жыл бұрын
Hi , I have an query about ReadWriteLock, this lock implemented internally for ConcurrentHashMap. Please let me know which lock mechanism used internally for ConcurrentHashMap is it Reentrant or ReadWriteLock...?
@kripamishra8147
@kripamishra8147 6 жыл бұрын
At time 8:25...we are having a thread2 which is reading a resource r1 and thread4 which is writing resource r1.. is there any chance that thread 5 which wants to read r1 can read different values.. so thread4 modified r1 with value 5, while thread2 still has value 4..then what value thread5 will be reading (4 or 5)..
@DefogTech
@DefogTech 6 жыл бұрын
thread 2 and thread 4 both want to read r1, thus are allowed to acquire read lock simultaneously. After this, thread 3 will be allowed to write to r1 then thread 5 will be allowed to read r1, which will get the latest value (written by thread 3)... while thread 2 and 4 will read the value before thread 3. due to java memory model, thread will always read the latest value of r1 after acquiring the lock
@av98
@av98 3 жыл бұрын
Sir, come back.
@debbh274
@debbh274 3 жыл бұрын
Fantastic
@TheGurukrushna
@TheGurukrushna 3 жыл бұрын
Kudos
@Sobioytccc
@Sobioytccc 5 жыл бұрын
which book have you use to study concurrency .
@DefogTech
@DefogTech 5 жыл бұрын
Concurrency in practice by Brian Goetz
@Sobioytccc
@Sobioytccc 5 жыл бұрын
Thank you dear
@mr.bikashdeka7117
@mr.bikashdeka7117 5 жыл бұрын
@@DefogTech That is old version. Do we have any latest version of Concurrency in practice by Brian Goetz
@shiyuwang
@shiyuwang 4 жыл бұрын
awesome!
@praddybishti
@praddybishti 6 жыл бұрын
awesome video . Just one question , how can we achieve multiple reads and 1 write simultaneously ? I mean if its not possible with readWrite lock , then do we have any other way/concept through which we can acheive this . Thanks. Btw your videos makes lot of sense to me.
@DefogTech
@DefogTech 6 жыл бұрын
Reading and writing simultaneously is not possible, I mean to get correct results and maintain data integrity you have to do one thing at a time
@vipinkoul9129
@vipinkoul9129 4 жыл бұрын
Awesome :-) do you teach by any chance , pls let me know. Can i get in touch with you?
@DefogTech
@DefogTech 4 жыл бұрын
hey Vipin.. no I don't do courses yet. only KZbin videos once in a while
@vipinkoul9129
@vipinkoul9129 4 жыл бұрын
@@DefogTech Awesome course, shows your level of knowledge :-)
@devanampriya1791
@devanampriya1791 Жыл бұрын
god of concurrency
@AleksandarT10
@AleksandarT10 4 жыл бұрын
Make some more great videos!
@9939364566
@9939364566 2 жыл бұрын
but why readLock is even created? I mean, if multiple threads can access the lock, then why have it in first place?
@DefogTech
@DefogTech 2 жыл бұрын
As per Java memory model, if you dont access objects through locks, you can get stale value from cache, so its important in multi-threading to use locks even for reads.
What are Java interrupts?
11:19
Defog Tech
Рет қаралды 57 М.
Java ReentrantLock - fairness, tryLock and more
13:17
Defog Tech
Рет қаралды 136 М.
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Phaser vs CountDownLatch vs CyclicBarrier
13:40
Defog Tech
Рет қаралды 78 М.
Choose the best Garbage Collector in Java
12:33
Defog Tech
Рет қаралды 65 М.
Race Condition vs Data Races in Java
9:58
Defog Tech
Рет қаралды 44 М.
Java 8 Streams API
15:45
Defog Tech
Рет қаралды 155 М.
ThreadLocal in Java
10:59
Defog Tech
Рет қаралды 189 М.
Circuit Breaker Pattern - Fault Tolerant Microservices
12:19
Defog Tech
Рет қаралды 191 М.
Singleton and Double Checked Locking
7:57
Defog Tech
Рет қаралды 31 М.
API Gateway Explained in 4 minutes
4:23
Connected Cookie
Рет қаралды 15 М.
Bulkhead Pattern - Fault Tolerant Microservices
8:43
Defog Tech
Рет қаралды 53 М.
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН