This is beyond awesome :D, need more videos like these !!
@shivraj7775 жыл бұрын
Can you have video explaining topic : spring boot + jpa(with mysql or any external database) + redis cache which will talk about providing crud operations efficiently?
@nklvijay6 жыл бұрын
Thank you so much and good explanation about URL shortener
@ILuvBilli3 жыл бұрын
Super boss, you know everything, where are you working?
@TechPrimers3 жыл бұрын
Does that matter?🙃
@vivekatbitm5 жыл бұрын
Thanks for the video, How did the spring service automatically linked to Redis server which you had already installed n running on your system?
@simplechannel78595 жыл бұрын
You are the best
@sumanchandrasaw76376 жыл бұрын
Please make a video of ControllerAdvice and in microservice architecture how exception is handling.
@sumanth712bs6 жыл бұрын
Sumanchandra Saw : I would agree to that
@bhargavasurimenu78505 жыл бұрын
Hi - Can you please clarify where we mentioned the Redis hostname and port to store the URL in side the Redis Cache ?
@shareefhiasat97466 жыл бұрын
Unique post in my opinion
@ankushanpat2732 жыл бұрын
How to connect redis cluster by using service url?
@sahilGupta2176 жыл бұрын
Can you please tell me how this Redis is different from the normal Db (Postgres, Oracle)?
@mss88916 жыл бұрын
I’ve get data from oracle dB with different schema names for an app. Right now it is configured as list of properties and using for loop we are retrieving the result. What is the best practice to do this? Please advise.
@LivenLove6 жыл бұрын
what is the best way to cache images in your opinion??
@TechPrimers6 жыл бұрын
Using CDN
@maheshrebba24374 жыл бұрын
With redis pub/sub the data should be saved in oracle db with springboot JPA save. Which actually not working. Please explain how to do it. Thanks in advance
@AmanGarg956 жыл бұрын
Hey. For an internal company project sometime last month I was using Jedis and Spring Boot to connect to a redis-cluster deployed on Google Cloud. I defined Redis related config in a separate config class such as initializing the factory and the template. All worked fine except for the fact that when Redis times out (say VM is down), we don't receive an error handler for us to manually time the function out after a period of X seconds or do anything else. To reproduce this issue, just kill the redis-server on your local and try the controller again. It should time out after a while. What ways do we have to stop the process apart from running the redis-function in an executor service and killing the thread after an interval?
@TechPrimers6 жыл бұрын
You can use hystrix and handle the fall backs based on different scenarios
@AmanGarg956 жыл бұрын
@@TechPrimers Hmm yea. But circuit breakers with their own dependency is sometimes not allowed. Anything in core Java/Spring?
@RamGopalsubbu105 жыл бұрын
Hi, I thought the URL shortener will be a clickable one, like bit.ly. Can you tell me how this can be done?
@minhajmohideen13445 жыл бұрын
good one. thank you
@rahulgoti38646 жыл бұрын
Thanks so much
@vishalmishra19372 жыл бұрын
hashing murmur3 is not working after import
@pramodcv6 жыл бұрын
Awesome
@anupraj7626 жыл бұрын
Thank you
@obrienobahi52146 жыл бұрын
Great Video, though too fast at some points.
@mss88916 жыл бұрын
Where in real-time people shortening the URLs? Kindly give some example.
@TechPrimers6 жыл бұрын
All Twitter links are shortened. Amazon provides shortened links for affliate n product links. Speakers in conference provide short links for the audience. Btw i use short urls at work all the time since they are easy to remember
@mss88916 жыл бұрын
Tech Primers Thanks a lot. Your videos are extremely helpful!
@avdheshrajput24706 жыл бұрын
Nice explanation...I do have doubt about usability....since we return hash during create and during get full url...so not sure how exactly we will use...in Amazon we get shorturl and we can hit that..
@TechPrimers6 жыл бұрын
That's no brainer. You can do httpservletresponse.sendRedirect(url)
@ajaydhiman23685 жыл бұрын
You didn't connect to Redis server ? just storing the data into redis !! strange..