Spring Tips: Better Data-Driven Applications with Spring Boot and Redis

Поделиться
HTML-код
  • Опубликовано: 18 дек 2024

Комментарии •

  • @satishchhatpar
    @satishchhatpar 3 года назад +1

    Thanks for sharing. Good stuff.

  • @void0818
    @void0818 3 года назад +1

    Pretty cool, thanks for the video~~~~

  • @alexgutjahr
    @alexgutjahr 3 года назад +3

    Great stuff, really enjoy your videos Josh! 🚀

  • @dangvuthai
    @dangvuthai 3 года назад +3

    Could you make the IDE use all the screen estate in next videos (no thick green/red border)? Thank you very much for the video.

  • @ChrisB_Crisps
    @ChrisB_Crisps 3 года назад +2

    At 15:40 the code shown in line 52 has
    'template.setConnectionFactory(jedisConnectionFactory());'
    You don't want to do that with Spring. If one is declaring a Spring bean of type 'JedisConnectionFactory' is better to pass it as collaborator of the method.
    @Bean
    RedisTemplate redisTemplate(JedisConnectionFactory jConnectionFactory) {
    RedisTemplate template = new RedisTemplate();
    template.setConnectionFactory(jConnectionFactory)
    // ...
    }
    Josh Long can explain you more about why the way shown in the video works but is not recommended.

  • @rhumedisi2783
    @rhumedisi2783 Год назад

    Thanks Josh Long (@starbuxman) and special guest star Brian Sam-Bodden (@bsbodden) for this great video. I typed all the codes in the last example and upon running the app, I kept getting the ERR Protocol error: unauthenticated multibulk length. I reduced the number of Articles and Authors, but the error persisted.
    Given that this is a limitation in Redis itself which doesn't allow a multi bulk arg larger than 1024*1024 in length, how did you guys work around it so as to avoid the error or how do you handle this error as per the example in video?

  • @michaeldeng1981
    @michaeldeng1981 3 года назад +2

    Very informative, the live coding is super fast and fluent, just flying like redis.

  • @mihango
    @mihango 3 года назад +3

    When saving the 2500 articles, is it right that we save one at a time @ 19:35 , or we should save all at once as in jpa. Does Redis have speed disparities on the two.

    • @briansam-bodden3130
      @briansam-bodden3130 3 года назад +1

      That was just for a demo purpose, you can bulk load that data into Redis easily

  • @vladv5090
    @vladv5090 3 года назад +1

    This escalated pretty quickly. From what is Spring and Redis to somy crazy stuff

  • @criddell86
    @criddell86 3 года назад

    Does @Cacheable work using an asynchronous non-blocking call to the Redis CacheManager? Is it possible to get a CacheManager that will allow for async' Redis operations?
    Thanks

  • @DVwhiteM
    @DVwhiteM 3 года назад +2

    It would be awesome if we had a source code

  • @kennethcarvalho3684
    @kennethcarvalho3684 2 года назад

    Wow how do you code so fast??

  • @digisecureagent7679
    @digisecureagent7679 3 года назад +2

    How can I contribute to create videos in your channel? I have 12 years experience working with Spring and made good projects that one might be interested to learn.

    • @dangvuthai
      @dangvuthai 3 года назад +2

      Could you create your own channel and let us know? I'll subscribe to it.

  • @FilmfanOliver1992
    @FilmfanOliver1992 3 года назад

    Please make a tutorial with MS-Sharepoint Webhooks and Spring :-)

  • @fernandorroza
    @fernandorroza 3 года назад

    👏🏼👏🏼

  • @aev2250
    @aev2250 3 года назад

    大佬