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

Sdílet
Vložit
  • čas přidán 7. 09. 2024
  • Hi, Spring fans! Redis is the swiss-army knife of databases and it integrates into Spring-based workloads with ease. In this installment, Josh Long (@starbuxman) and special guest star Brian Sam-Bodden (@bsbodden) look at just a few of the bootiful possibilities for Redis and Spring Boot.

Komentáře • 19

  • @satishchhatpar
    @satishchhatpar Před 3 lety +1

    Thanks for sharing. Good stuff.

  • @void0818
    @void0818 Před 3 lety +1

    Pretty cool, thanks for the video~~~~

  • @alexgutjahr
    @alexgutjahr Před 3 lety +3

    Great stuff, really enjoy your videos Josh! 🚀

  • @dangvuthai
    @dangvuthai Před 3 lety +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.

  • @michaeldeng1981
    @michaeldeng1981 Před 3 lety +2

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

  • @vladv5090
    @vladv5090 Před 3 lety +1

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

  • @ChrisB_Crisps
    @ChrisB_Crisps Před 2 lety +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.

  • @criddell86
    @criddell86 Před 3 lety

    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 Před 3 lety +2

    It would be awesome if we had a source code

  • @fernandorroza
    @fernandorroza Před 3 lety

    👏🏼👏🏼

  • @mihango
    @mihango Před 3 lety +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 Před 3 lety +1

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

  • @FilmfanOliver1992
    @FilmfanOliver1992 Před 3 lety

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

  • @kennethcarvalho3684
    @kennethcarvalho3684 Před 2 lety

    Wow how do you code so fast??

  • @digisecureagent7679
    @digisecureagent7679 Před 3 lety +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 Před 3 lety +2

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

  • @rhumedisi2783
    @rhumedisi2783 Před rokem

    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?

  • @aev2250
    @aev2250 Před 3 lety

    大佬