
Nilanchala ๐
@asknilan
Followers
773
Following
952
Media
484
Statuses
4K
Software Architect | Published Author | Java, Spring, Spring Boot & Microservices | Maintainer of @Stacktips
London, England
Joined March 2009
Even a conventional war would cost countless lives and increase misery on both sides. That said, no one should get a free pass taking innocent lives just because they follow certain religious practices. Justice must be served!
0
0
0
Teaching is the most effective way to learn. It not only validates your understanding but also provides the opportunity to engage with individuals who possess diverse perspectives.
0
0
1
If Apple were to adopt semantic versioning, the MacBook M4 should be renamed M1.0.4. Having used the M1 for over 2 years and the M3 for six months as my dev machine, I have noticed no differences except for the colour.
0
0
1
May this Diwali bring the victory of light over darkness, knowledge over ignorance, and good over evil into your life. Wishing you and your loved ones a bright and joyous Diwali! ๐๐๐
0
0
2
I still miss the quick action setting from my Android days.
0
0
0
Are you seeking a mentor to further your Java and backend developer career? I have 2 spots available. Hereโs what you can expect: .- weekly 1-1 sessions.- hands-on projects. - guided learning.
mentorcruise.com
Nilanchala Panigrahy is a Engineering & Data mentor who provides personalized mentorship in Java,ย Spring,ย Spring Boot,ย Design Patterns,ย Microservices,ย Code Reviewย and more.
0
0
4
Deeply saddened by the passing of Ratan Tata, a visionary entrepreneur, humble leader, and extraordinary philanthropist. His legacy of kindness and innovation will continue to inspire generations. May his soul rest in peace!
0
0
2
RT @gunnarmorling: Are you using #Java annotation processors? Then watch out when upgrading to Java 23: APs are not picked up any longer byโฆ.
0
25
0
Working with XML-Based REST API with Spring Boot. This video tutorial provides a step-by-step guide on handling XML requests and responses in Spring Boot REST APIs. It demonstrates creating a REST controller that accepts XML requests and produces XML responses. It also explains.
0
0
1
And, that's a wrap!. Read the full article here.
stacktips.com
This article delves into some key optimisation techniques and considerations to improve the overall application performance when dealing with MongoDB from Spring Boot.
0
0
0
๐ Use Capped Collections when Applicable.Capped collections are fixed-size collections that maintain insertion order and automatically remove the oldest documents when the collection reaches its maximum size. Can be useful if you want to create a real-time logging system that
1
0
1
9๏ธโฃ Leverage Bulk Operations.Bulk operations allow you to batch multiple operations (insert, update or delete) in a single request. It results in fewer network roundtrips and performs significantly faster. Note that, MongoDB bulk operations are not atomic by default. You can
1
0
0
8๏ธโฃ Use Aggregations.For complex data processing, MongoDB's aggregation framework is more efficient than processing multiple queries from your application side. Aggregations can be used for processing and transforming documents within a collection. It uses a pipeline pattern,
1
0
0
7๏ธโฃLeverage Application Level Caching.Caching helps to speed up data access and improve overall application performance by reducing the need for frequent access to DB. Caching strategy can be implemented at different levels to meet your performance goals. Refer to the official.
1
0
0