Пікірлер
@shashankmungantiwar5676
@shashankmungantiwar5676 2 күн бұрын
To prevent reflection problem when code moved at first place in test class, I modified constructor a bit as follow: private Singleton() { StackTraceElement[] stackTraceElements = Thread.currentThread().getStackTrace(); if(soleInstance != null || !stackTraceElements[1].getMethodName().equals("getInstance")){ throw new RuntimeException("Cannot create object. Please use getInstance()"); } System.out.println("Creating Object ...!"); }
@DhineshM-l3k
@DhineshM-l3k 9 күн бұрын
Watching this in 2024, Amazing video.
@sachdevasahil7
@sachdevasahil7 13 күн бұрын
Love your videos. Learn alot and new things keep up the good work thank you
@Tanga-ou5im
@Tanga-ou5im 15 күн бұрын
Best explanation. Perfect
@VinothkumarJayandiran
@VinothkumarJayandiran Ай бұрын
Thanks Ranjith for the detailed explanation. Appreciate it.
@programacion3694
@programacion3694 Ай бұрын
very good explanation dude, you are amazing :)
@programacion3694
@programacion3694 Ай бұрын
uwu
@programacion3694
@programacion3694 Ай бұрын
owo
@stevenonymous82
@stevenonymous82 Ай бұрын
Such a high quality introduction, thank you kindly!
@vinayak6564
@vinayak6564 2 ай бұрын
Isn't low latency directly proportional to throughput? low latency means requests are served fast, which means a greater number of requests can be served in a given time, which in turn leads to high throughput? In this case how pause time acceptable for throughput?
@AayushGore-
@AayushGore- 2 ай бұрын
ClassDefNotFoundException definition at 11:29. Thanks sir!
@m07hcn62
@m07hcn62 2 ай бұрын
Outstanding ! Thank you, Sir.
@blazekiller521
@blazekiller521 2 ай бұрын
Awesome Explanation ❤❤❤❤❤ Please Keep On Doing Good Work Why Exactly You Have Stopped Uploading Such A Great Work
@blazekiller521
@blazekiller521 2 ай бұрын
Awesome Explanation ❤❤❤❤❤ Please Keep On Doing Good Work Why Exactly You Have Stopped Uploading Such A Great Work
@468hitman
@468hitman 3 ай бұрын
nicely explained
@S__Khan__
@S__Khan__ 3 ай бұрын
Thanks Ranjith. Quite clear and in-depth explanation.
@sreenivasuludoniparthi7534
@sreenivasuludoniparthi7534 3 ай бұрын
It's amazing tutorial and great explanation
@mystoriesuk
@mystoriesuk 4 ай бұрын
Thanks!
@er.sahilmd
@er.sahilmd 4 ай бұрын
Hey Man, I really appreciate your Hash Map like videos very much They are really very beautifully explained, can you please continue on such topics. Like most asked interview questions playlist.
@pratikbutala9044
@pratikbutala9044 4 ай бұрын
Watching this in 2024. Amazing information on GC fundamentals. Thank you! 👍👍
@er.sahilmd
@er.sahilmd 4 ай бұрын
Same here
@channuangadi7504
@channuangadi7504 4 ай бұрын
16:00 is it compulsory always the the targeted object move from Eden--- survivor1---- survivo2 Is steps matters always?
@ranjithramachandran5928
@ranjithramachandran5928 4 ай бұрын
The two survivor spaces are used to avoid fragmentation. Move to E->S1 and then from there to S2 - only one of them holds objects at a time.
@AbhijitDixit-ki1oo
@AbhijitDixit-ki1oo 5 ай бұрын
Use of animation really helps understand the concept. Thank you so much sir 🙏
@aruneshshah7402
@aruneshshah7402 5 ай бұрын
Now in 2024 and this is still relevant. Woow
@Sreeni_JavaTechie
@Sreeni_JavaTechie 5 ай бұрын
Informative video. Please correct to cloneable interface instead of clonable
@gulamsarwar7502
@gulamsarwar7502 6 ай бұрын
would you pls share your slides ??
@Vk-bq8sd
@Vk-bq8sd 7 ай бұрын
still a masterpiece
@shubhammatsagar2344
@shubhammatsagar2344 7 ай бұрын
02:30 Objects are created and collected based on their lifespan in the application. 07:15 Garbage collection involves marking reachable objects, sweeping unreachable objects, and compacting memory. 09:40 Java heap is divided into young and old generations for managing objects efficiently. 14:48 Survivor spaces in Java heap prevent the need for compacting step 17:11 Garbage collection in Java manages unreachable objects efficiently 21:33 Difference between responsiveness and throughput in Java applications 23:33 Concurrent collector runs concurrently with the application, while Parallel collector uses multiple CPUs for fast garbage collection. 28:08 G1 garbage collector in Java 7 & 8 divides the heap into regions for faster and minimal pauses. 30:20 Garbage collection in Java includes four different kinds of garbage collectors and how to use them. 35:08 Garbage collection in Java has no guarantee on when objects will get collected. 37:14 Garbage collection parameters in Java 41:39 Visual VM allows manual triggering of garbage collection. 43:46 Using direct buffer memory for managing Java Runtime memory Crafted by Merlin AI.
@scottloewke5199
@scottloewke5199 7 ай бұрын
In order to use the "hash & (n-1)" optimization in place of a modulo operation, n needs to be a power of two. The video presenter kept saying "2 raised to n", which isn't correct.
@vyshnavramesh9305
@vyshnavramesh9305 7 ай бұрын
Summary: Steps in garbage collection: mark, sweep, compact Division of heap into Young (Survivor spave from, Survivor space to) and Old generations Minor garbage collector runs mark and sweep in young generation Major garbage collector runs mark, sweep and compact across the heap Types of GC: Serial (single thread - stops app during MSC), Concurrent (runs CS along with application) and Parallel (multithread - stops app during MSC)
@vyshnavramesh9305
@vyshnavramesh9305 7 ай бұрын
0:49 Edit .java -> compile .java -> run .class 3:33 JVM breakdown 4:14 Class loader: load (bootstrap (rt.jar), extension (jre/lib/ext), application (classes we write)) 6:59 Class loader: link (verify bytecode, prepare memory allocation for static variables, resolve nested references of a class) 10:02 Class loader: initialize (of static variables, static blocks) 11:09 ClassNotFoundException and ClassDefNotFoundException 12:38 Runtime Data area 13:01 Method Area / Permgen space / Metaspace (class data like static variables) 16:16 Heap (object data) 17:41 Program Counter Register: pointer to next instruction to be executed per thread 18:35 Java Stacks: stack frame of currently running method per thread 20:16 Native method stack: for running non-java methods called from java methods running in Java Stack (per thread) 24:09 Execution engine: GHIJ (Garbage Collector, Hotspot Profiler, Interpreter, JOT Compiler) 24:26 Interprets and executes the bytecode/instruction 25:52 JIT Compiler: Bytecodes that are repeated, called hotspots, are saved from re-interpretation. On the fly compiles them and make them ready for execution 26:27: Hotspot Profiler: graphically analyses the all the bytecodes and helps JIT compiler 27:36 Recap 26:57 Garbage Collector: cleans up unused classes, objects and memory areas.
@dhineshm4798
@dhineshm4798 7 ай бұрын
Watching in 2023, its really super.
@nileshshinde-eb3gi
@nileshshinde-eb3gi 7 ай бұрын
Why you have stopped making videos... We need more content like this in Java🙂
@bahibrahim101
@bahibrahim101 7 ай бұрын
Thank you
@nehapatel1133
@nehapatel1133 8 ай бұрын
Hi Ranjith. Glad to see you back. Happy to hear your voice again. Can you please give your LinkedIn URL in comment section so we can follow you. Expecting more content on Java 17 and higher versions and Microservices.
@nehapatel1133
@nehapatel1133 8 ай бұрын
Thank you so much for coming back. I don't know where were you all these years. I was checking your channel like anything hopping for that you would come one day. Thank God ! At last you are back. Please do not disappear. Loved the way you explain Java. Thank you Sir and welcome back!
@sowmyvasudevan1522
@sowmyvasudevan1522 9 ай бұрын
If the main thread has a timeout set,is it possible that the gc at times can cause the timeout?? As in as gc kicked in main thread couldn't finish in time
@PURANDARLIVE
@PURANDARLIVE 9 ай бұрын
CDAC Madhura mam ke reference se kon kon aya hai bhai ?
@sandipbhaumik
@sandipbhaumik 9 ай бұрын
Difference between -XX:NewSize and -XX:MaxNewSize is that, first one for initial space allocated for eden space and second one for max space allocated for eden space.
@norbertmao1373
@norbertmao1373 9 ай бұрын
appreciate how you broke down the different types of GC algorithms. This is a must-watch for anyone looking to improve their understanding of memory management in Java.
@vaishnavepranav7394
@vaishnavepranav7394 10 ай бұрын
Excellent video. Thanks a lot
@vaishnavepranav7394
@vaishnavepranav7394 10 ай бұрын
Excellent one. Thanks.
@akshayyhakrishnamurthy7319
@akshayyhakrishnamurthy7319 10 ай бұрын
One of the best videos with clear explanation. Helps me understand the basics. Thank you for making this video. Its really helpful! Good work...
@lifeisfun9
@lifeisfun9 10 ай бұрын
Thankyou for such excellent video. Its the best.
@varungudisena9463
@varungudisena9463 10 ай бұрын
very good explanation
@SrijitPal7
@SrijitPal7 11 ай бұрын
Tip - listen in 1.5X
@mrrishiraj88
@mrrishiraj88 11 ай бұрын
Great thanks
@anshumanmohapatra7585
@anshumanmohapatra7585 11 ай бұрын
Hi sir glad to see you back. Hope you are doing good. I was waiting for your videos. You are a great teacher
@anshumanmohapatra7585
@anshumanmohapatra7585 11 ай бұрын
After long time i see your video sir. Waiting for technical videos...
@attila_szilagyi
@attila_szilagyi 11 ай бұрын
Fantastic tutorial.
@AruneshSrivastava
@AruneshSrivastava 11 ай бұрын
why you stopped making videos sir , your videos on Garbage collector , hash map and string are best till date