URL Shortener | Spring Boot and Spring Data Redis | Tech Primers

Поділитися
Вставка
  • Опубліковано 6 лис 2024

КОМЕНТАРІ • 34

  • @vivekatbitm
    @vivekatbitm 5 років тому +1

    Thanks for the video, How did the spring service automatically linked to Redis server which you had already installed n running on your system?

  • @shivraj777
    @shivraj777 5 років тому +1

    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?

  • @ILuvBilli
    @ILuvBilli 3 роки тому +1

    Super boss, you know everything, where are you working?

  • @sumanth712bs
    @sumanth712bs 6 років тому +1

    I would be really glad to see videos of gcp !

  • @rockboyjazz
    @rockboyjazz 6 років тому +1

    This is beyond awesome :D, need more videos like these !!

  • @bhargavasurimenu7850
    @bhargavasurimenu7850 5 років тому

    Hi - Can you please clarify where we mentioned the Redis hostname and port to store the URL in side the Redis Cache ?

  • @sumanchandrasaw7637
    @sumanchandrasaw7637 6 років тому +1

    Please make a video of ControllerAdvice and in microservice architecture how exception is handling.

    • @sumanth712bs
      @sumanth712bs 6 років тому

      Sumanchandra Saw : I would agree to that

  • @nklvijay
    @nklvijay 6 років тому +1

    Thank you so much and good explanation about URL shortener

  • @mss8891
    @mss8891 6 років тому

    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.

  • @sahilGupta217
    @sahilGupta217 6 років тому

    Can you please tell me how this Redis is different from the normal Db (Postgres, Oracle)?

  • @ankushanpat273
    @ankushanpat273 2 роки тому

    How to connect redis cluster by using service url?

  • @maheshrebba2437
    @maheshrebba2437 4 роки тому

    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

  • @RamGopalsubbu10
    @RamGopalsubbu10 5 років тому

    Hi, I thought the URL shortener will be a clickable one, like bit.ly. Can you tell me how this can be done?

  • @simplechannel7859
    @simplechannel7859 5 років тому +1

    You are the best

  • @shareefhiasat9746
    @shareefhiasat9746 6 років тому +1

    Unique post in my opinion

  • @LivenLove
    @LivenLove 6 років тому

    what is the best way to cache images in your opinion??

  • @AmanGarg95
    @AmanGarg95 6 років тому

    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?

    • @TechPrimers
      @TechPrimers  6 років тому

      You can use hystrix and handle the fall backs based on different scenarios

    • @AmanGarg95
      @AmanGarg95 6 років тому

      @@TechPrimers Hmm yea. But circuit breakers with their own dependency is sometimes not allowed. Anything in core Java/Spring?

  • @vishalmishra1937
    @vishalmishra1937 2 роки тому

    hashing murmur3 is not working after import

  • @minhajmohideen1344
    @minhajmohideen1344 5 років тому +1

    good one. thank you

  • @obrienobahi5214
    @obrienobahi5214 5 років тому +1

    Great Video, though too fast at some points.

  • @rahulgoti3864
    @rahulgoti3864 6 років тому +1

    Thanks so much

  • @ajaydhiman2368
    @ajaydhiman2368 5 років тому

    You didn't connect to Redis server ? just storing the data into redis !! strange..

  • @avdheshrajput2470
    @avdheshrajput2470 6 років тому

    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..

    • @TechPrimers
      @TechPrimers  6 років тому

      That's no brainer. You can do httpservletresponse.sendRedirect(url)

  • @anupraj762
    @anupraj762 6 років тому +1

    Thank you

  • @pramodcv
    @pramodcv 6 років тому +1

    Awesome

  • @mss8891
    @mss8891 6 років тому

    Where in real-time people shortening the URLs? Kindly give some example.

    • @TechPrimers
      @TechPrimers  6 років тому +1

      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

    • @mss8891
      @mss8891 6 років тому +1

      Tech Primers Thanks a lot. Your videos are extremely helpful!