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

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Pretty cool, thanks for the video~~~~

void
Автор

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.

dangvuthai
Автор

Great stuff, really enjoy your videos Josh! 🚀

alexgutjahr
Автор

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

vladv
Автор

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

michaeldeng
Автор

At 15:40 the code shown in line 52 has


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<String, String> jConnectionFactory) {
RedisTemplate<String, String> template = new RedisTemplate<>();

// ...
}

Josh Long can explain you more about why the way shown in the video works but is not recommended.

ChrisB_Crisps
Автор

It would be awesome if we had a source code

DVwhiteM
Автор

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

criddell
Автор

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.

mihango
Автор


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?

rhumedisi
Автор

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.

digisecureagent
Автор

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

FilmfanOliver