Skyrocket Your API Performance with These Techniques

preview_player
Показать описание


🎟 Join this channel to get access to perks:

RECOMMENDED COURSES

BE MY FRIEND:

MY FAVOURITE GEAR:

RECOMMENDED BOOKS:

🎻 MUSIC:

#api #performance #DailyCodeBuffer
Рекомендации по теме
Комментарии
Автор

Another way of increasing the performance is:

- Use of async HTTP client e.g use of Webclient over RestTemplate (Reactive Prog.)

ashutoshgupta
Автор

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.

inzi
Автор

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.

kappaj
Автор

could you please provide complete example on asyn logging for an application

aravinds
Автор

Can you show us how to implement async logging please

AhmedMkhinini
Автор

Very nice.

Can you plz explain with example

chiragrathod
Автор

Hi Bro!
Can you make the viedo on code reviews and shotcut with spring and java.

chickpatil
Автор

I want 2 more ways to improve the performance of API's:
1. db indexing
2. creating the view's

ramanujamkv
Автор

Isn't connection pooling handled by springboot itself? I see hikaripool warning regularly on console.

lakshaysangwan
Автор

What about reactive programming? Sorry if I've repeated somebody :)

АндрейБорденко
Автор

any examples with springboot app? can you show realtime example

yravi
Автор

DB indexing is another way to improve the API performance

sandeeppoojary
Автор

great. btw the filter hurts the eyes ;)

mvs