Skyrocket Your API Performance with These Techniques

  Рет қаралды 13,478

Daily Code Buffer

Daily Code Buffer

Күн бұрын

Head to cutt.ly/spring_micro and use Coupon Code DCBFEST to get a HUGE Discount on the course.
🎟 Join this channel to get access to perks:
/ @dailycodebuffer
RECOMMENDED COURSES
🎬 Spring Boot + React Full Stack Web Application with Tailwind CSS - • Spring Boot + React Fu...
🎬 Spring Security Full Course | From Registration to Login - • Spring Security Tutori...
🎬 Microservices using SpringBoot | Full Example - • Microservices using Sp...
🎬 Event-Driven Microservices with CQRS Design Pattern - • Implement CQRS Design ...
🎬 Implement SAGA Design Pattern using Spring boot and Axon Framework - • Implement SAGA Design ...
🎬 Spring Data JPA Tutorial | Full In-depth Course - • Spring Data JPA Tutori...
🎬 Deploy Springboot Microservices to Kubernetes Cluster - • Deploy Springboot Micr...
🎬 Automate Microservices deployment with Github Actions - • GitHub Actions Tutoria...
🎬 Go / Golang Full Course for Beginners - • Golang Tutorial for Be...
🎬 Node JS Full Course for Beginners: Learn in 2 Hours - • Node JS Full Course fo...
🎬 Express.js Tutorial - Beginner | 2021 - • Express.js Tutorial - ...
🎬 Redis CLI Tutorial | Complete Course - • Redis CLI Tutorial | C...
BE MY FRIEND:
👨‍💻. Website: www.dailycodebuffer.com/
👨‍🏫 Facebook: / dailycodebuffer
🐦 Twitter: / dailycodebuffer
📸 Instagram: / dailycodebuffer
🎮 GitHub: github.com/dailycodebuffer
MY FAVOURITE GEAR:
👨‍💻 My Macbook Air M1: amzn.to/3eFXlID
💻 ASUS ROG Zephyrus G14, 14": amzn.to/32xsXhf
💻 ASUS ROG Zephyrus G14, 14" (US): amzn.to/3xa6X6m
🎤 My Main Mic: amzn.to/3qDl0z0
🎤 My Main Mic (US): amzn.to/3awzUj7
🎙 My Secondary Mic: amzn.to/3sOZCJW
🖥 My LG Monitor: amzn.to/3zhLY3e
🖱 My Mouse: amzn.to/3eDpRKT
⌨️ My Keyboard: amzn.to/32xthMZ
RECOMMENDED BOOKS:
📙 Mastering Spring Boot 2.0 (Kindle): amzn.to/3HsOiHu
📙 Mastering Spring Boot 2.0 (US): amzn.to/3tHNUy5
📙 Building Microservices(Kindle): amzn.to/3gsA1jL
📙 Building Microservices(US): amzn.to/3dDnfNn
📙 Spring Boot in Action: amzn.to/32Nf3qW
📙 Spring Boot in Action (US): amzn.to/32DkeX9
📙 Spring Microservices in Action: amzn.to/3mQ4sCH
📙 Spring Microservices in Action(US): amzn.to/32G3Hl7
🎻 MUSIC:
🎵 Hear the Noise (Sting): kzbin.info...
“Sound effects obtained from www.zapsplat.com“
#api #performance #DailyCodeBuffer

Пікірлер: 36
@DailyCodeBuffer
@DailyCodeBuffer 11 ай бұрын
Head to cutt.ly/spring_micro and use Coupon Code DCBFEST to get a HUGE Discount on the course.
@ashutoshgupta9056
@ashutoshgupta9056 11 ай бұрын
Another way of increasing the performance is: - Use of async HTTP client e.g use of Webclient over RestTemplate (Reactive Prog.)
@neon0wl2107
@neon0wl2107 11 ай бұрын
In my last project we used async Executors for initiating rest calls, then some business logic and then future.get() and callback
@sharadpratap
@sharadpratap 11 ай бұрын
Very good, short and precise..
@ashrikahamed_
@ashrikahamed_ 11 ай бұрын
Keep sharing spring boot tips...Tnx..
@user-vj8vl8yt6q
@user-vj8vl8yt6q 7 күн бұрын
Practical video needed for each
@hassan-usman
@hassan-usman 11 ай бұрын
Good job 👍🏻
@kappaj01
@kappaj01 11 ай бұрын
Spring WebFlux with a streaming API.... That way you can start presenting data to the user as it becomes available. User experience is much better, none of the 20 sec wait with a spinning wheel.
@chiragrathod4757
@chiragrathod4757 11 ай бұрын
Very nice. Can you plz explain with example
@aravinds7343
@aravinds7343 11 ай бұрын
could you please provide complete example on asyn logging for an application
@svalyavasvalyava9867
@svalyavasvalyava9867 9 ай бұрын
awesome video, thank you ☺️
@DailyCodeBuffer
@DailyCodeBuffer 9 ай бұрын
Glad you liked it!
@inzi27
@inzi27 11 ай бұрын
small databases can be entirely stored in memory, rather than in redis cache. For eg: we can read the whole data from database and store the data in a map during application startup and use this in-memory map for the processing of each request. Note: this approach can only be used when the database is used only to read data and there are no write transactions.
@atulrai1713
@atulrai1713 11 ай бұрын
Can you share any reference where this was implemented?
@willwarasug.t.8126
@willwarasug.t.8126 10 ай бұрын
Won't it affect the performance of the machine entirely when there is increase in db data or no of apps?
@inzi27
@inzi27 10 ай бұрын
@@willwarasug.t.8126 yes it would. this approach can only be used when the data set is of limited size.
@bavmac
@bavmac 8 ай бұрын
I have never seen this kind of approach, can you explain?
@ashokkumar-cx6of
@ashokkumar-cx6of 12 күн бұрын
I never seen this type of performance increase could make one video
@user-sf9rf1je3u
@user-sf9rf1je3u 11 ай бұрын
Hi Bro! Can you make the viedo on code reviews and shotcut with spring and java.
@ramanujamkv
@ramanujamkv 7 ай бұрын
I want 2 more ways to improve the performance of API's: 1. db indexing 2. creating the view's
@sandeeppoojary7875
@sandeeppoojary7875 3 ай бұрын
DB indexing is another way to improve the API performance
@user-fr9jb3sm4v
@user-fr9jb3sm4v 11 ай бұрын
What about reactive programming? Sorry if I've repeated somebody :)
@AhmedMkhinini
@AhmedMkhinini 11 ай бұрын
Can you show us how to implement async logging please
@InshuMussu
@InshuMussu 2 ай бұрын
You can put your log in a queue and use background worker service to write log
@manassahoo6860
@manassahoo6860 5 ай бұрын
use of gRPC
@lakshaysangwan1442
@lakshaysangwan1442 11 ай бұрын
Isn't connection pooling handled by springboot itself? I see hikaripool warning regularly on console.
@DailyCodeBuffer
@DailyCodeBuffer 11 ай бұрын
Yes, We can provide the configuration
@vivekpisal2857
@vivekpisal2857 11 ай бұрын
For spring boot 3 hikaripool is autoconfigured maybe
@yravi37
@yravi37 11 ай бұрын
any examples with springboot app? can you show realtime example
@DailyCodeBuffer
@DailyCodeBuffer 11 ай бұрын
I will plan on it
@sfgmbkmbksfg3722
@sfgmbkmbksfg3722 11 ай бұрын
@DailyCodeBuffer Please do some realtime tutorial on this and also Please make a video on Reactive Programming and use of webclient over restTemplate. Please add these to your bucket list and also keep posting videos on springBoot and RestAPIs. It'll help the rookie developers.
@mvs69
@mvs69 11 ай бұрын
great. btw the filter hurts the eyes ;)
@DailyCodeBuffer
@DailyCodeBuffer 9 ай бұрын
Sorry about that
@SpaceFactts
@SpaceFactts 11 ай бұрын
M
OAuth2 Explained in Plain English
6:26
Daily Code Buffer
Рет қаралды 6 М.
Jumping off balcony pulls her tooth! 🫣🦷
01:00
Justin Flom
Рет қаралды 24 МЛН
Llegó al techo 😱
00:37
Juan De Dios Pantoja
Рет қаралды 58 МЛН
لقد سرقت حلوى القطن بشكل خفي لأصنع مصاصة🤫😎
00:33
Cool Tool SHORTS Arabic
Рет қаралды 20 МЛН
БИМ БАМ БУМ💥
00:14
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 4,5 МЛН
Enable Https For Spring Boot | SSL
12:22
AVSOFT
Рет қаралды 342
My Strategy for Generating GOLD to fund Kingsmarch
6:25
Zizaran
Рет қаралды 30 М.
Why every dev should do touch typing
3:02
Dhadve Yash
Рет қаралды 143
Spring Boot Tutorial | Full In-depth Course
3:11:18
Daily Code Buffer
Рет қаралды 525 М.
iPhone 15 Pro в реальной жизни
24:07
HUDAKOV
Рет қаралды 479 М.
iPhone socket cleaning #Fixit
0:30
Tamar DB (mt)
Рет қаралды 17 МЛН