Karuppiah Natarajankaruppiah.dev·Sep 23, 2023Debugging and fixing a memory leak in a Node.js service in ProductionToo Long Didn't Read (TLDR;) I used Service Down Slack alerts to find out that there was some issue with the service. I used the New Relic % Memory Usage Graph to notice that there's an unusual memory usage pattern. A colleague mentioned there might ...Discuss·114 readsNode.js
Rohit Patilblog.rohitpatil.pro·Sep 18, 2023Garbage Collection in PythonIn the previous article, we explored how objects are stored in memory and how they are referenced by variables in Python. However, an important question arises: what happens when objects are no longer needed? Keeping them in memory for an extended pe...DiscussPython
bhola khawasforJoBins Engineeringblog.jobins.jp·Aug 27, 2023Vue.js Memory Leak Identification And Solution.There is no doubt that Vue.js is a popular and powerful JavaScript framework that allows us to build dynamic and interactive web applications. However, like any software, Vue.js applications can sometimes experience memory leaks that can lead to perf...Nirajan Basnet and 1 other are discussing this2 people are discussing thisDiscuss·12 likes·647 readsVue.js
Karuppiah Natarajankaruppiah.dev·Jul 25, 2023Playing with Java Out Of Memory ExceptionI was recently trying to simulate java.lang.OutOfMemoryError in my local. This was to learn and also understand how to deal with them in case they happen in our Togai production environment My idea was to run a code that takes up a lot of memory in t...Discuss·48 readsJava
Pierre-Yves Ricaublog.p-y.wtf·Jul 20, 2023Freezes & ANRs? Check memory leaks!In this article, I show how Android memory leaks lead to jank, freezes and ANRs more often than they lead to OutOfMemoryError crashes. Navigation Latency At Square, we've been tracking a User-Centric performance metric: Interaction Latency. We track ...Discuss·14 likes·3.8K readsAndroid
Gizem Türkergizemturker.hashnode.dev·Jul 11, 2023Methods to prevent memory leaks in iOSIn this article, I will tell you about memory leaks. I am planning to practice Swift programming languages memory leak. What is a memory leak? As per Apple, “ Memory that was allocated at some point, but was never released and is no longer referen...Discuss·44 readsmemory-management
Pierre-Yves Ricaublog.p-y.wtf·Jun 27, 2023Avoid Java double brace initializationTL;DR Avoid doing this: new HashMap<String, String>() {{ put("key", value); }}; Leak Trace I was recently looking at the following leak trace from LeakCanary: ┬─── │ GC Root: Global variable in native code │ ├─ com.bugsnag.android.AnrPlugin instan...Discuss·4 likes·2.4K readsAndroid
Debmalya Sendebmalyasen.hashnode.dev·May 16, 2023Best Practices to Prevent Memory Leaks and Stale Data in Your ApplicationsIntro As a developer, it is important to ensure the stability and performance of your applications. Two common issues that can impact your application's reliability are memory leaks and stale data. In this blog post, we will explore best practices to...Discuss·46 readsWeb Development
Harsh Mangeharshmange.hashnode.dev·Apr 27, 2023Detecting and Fixing Memory Leaks in Your CodeA memory leak occurs in an operating system when a program or process uses memory but fails to release it even when it is no longer needed. Over time, this can result in the depletion of available memory, leading to performance issues, crashes, and o...DiscussMemory Leak
Nayan Dasmrpalindrome.hashnode.dev·Apr 8, 2023Multithreading to Memory leak! Why?Everything has its own pros and cons! Even your favourite programming language like Python. One of the most known features of Python is GIL which stands for "Global Interpreter Lock". It is a mechanism that is used in the CPython interpreter to synch...Discuss·257 readsPython