Programming Tips 💡
51.5K subscribers
67 photos
10 videos
30 files
354 links
Programming & AI:
Tips 💡
Articles 📕
Resources 👾
Design Patterns 💎
Software Principles

🇳🇱 Contact: @MoienTajik

🎯 Buy ads: https://telega.io/c/ProgrammingTip
Download Telegram
Avoiding Memory Leaks By Simple Tricks

Memory Leaks often cause performance degradation of software. Since, Java manages memory automatically, the developers do not have much control.

But there are still some standard practices which can be used to protect from memory leakages. 🙆🏻‍♂️

1️⃣ - Always release database connections when querying is complete.

2️⃣ - Try to use Finally block as often possible.

3️⃣ - Release instances stored in Static Tables.

#java #memory #performance
@programmingTip
Strings Are Evil 👺

Reducing memory allocations from 7.5GB to 32KB. 😵

In this article we will explore potential optimisations to the import process specifically within the context of reducing memory during the import process.

This article is awesome❗️


https://t.me/pgimg/138

[ Article ] : bit.do/StraE


#CSharp #Performance
@ProgrammingTip