Your all the 3 videos for spring data redis explained everything in short, concise and simple way. Great effort and great videos :)
@Javatechie4 жыл бұрын
Thanks Ninja , I hope you enjoyed it
@ljka4 жыл бұрын
Hate these long commercials but not skipping it since it is the least that we could do to repay your effort of sharing 👍🏻
@manirsg96414 жыл бұрын
Nice. Same i implemented for fixing the long running query.
@LifeHappy-2 жыл бұрын
Props for using lombok, I rarely see tutorials using any lombok annotations.
@odunayooni56602 жыл бұрын
Thank you for this wonderful tutorial.
@fuadgafarov2 жыл бұрын
Big thanks, very useful.
@sandeepsinghchauhan942 Жыл бұрын
Thanks it was really helpful ❤
@kayeshparvez3 жыл бұрын
Thanks for simple explanation. Do you have any plan to make a rate limiter or distributor lock using redis ?
@santoshkamat61323 жыл бұрын
You are a java Legend :)
@adurigowrisankar2229 күн бұрын
please do a video on redis with spring boot using sentinal
@gajendrathakur48333 жыл бұрын
Thanks Sir
@johnvick8861 Жыл бұрын
Please more on redis cluster and distributed caching
@MaheshYoganand Жыл бұрын
Hi Basant, Great Video. But the github link for this redis pubsub is not working. Can you please check once?
@Javatechie Жыл бұрын
Okay sure let me check and update you
@bashful883 жыл бұрын
Hello, I am facing an issue while I connect to my redis server in aws. I have mentioned the hostname of my aws redis server in RedisStandaloneConfiguration, but unfortunately it is not working. I am able to connect to my aws redis server from my machine, so the connectivity is fine, problem when connecting from my application with RedisStandaloneConfiguration. Here is the error message "Connection failure occurred. Restarting subscription task after 5000 ms". Can you please help?
@chitthiaayeehai2 жыл бұрын
Pls make a video on Redis Stream also
@trk43294 жыл бұрын
Good video bro ,can you do a video for Apache kafka and spring boot
@Javatechie4 жыл бұрын
Hi I already explained with code how can we do this using Kafka please have a look in spring boot playlist
@obuhovmi4 жыл бұрын
Hi! How Publish Subscribe Message onto MQTT(Mosquitto) using Spring Boot?
@Javatechie4 жыл бұрын
Never tried this let me check
@2RAJ212 ай бұрын
Thank you Git Hub repo shown 404..
@rajivkumar-ub6uj2 жыл бұрын
Hello Java Techie. If I have one producer produces the events and I will configure multiple consumers the redis server. my requirement is that if a consumer consumed the event, that event should not be available for other consumers. May I know how we can achieve this?
@Javatechie2 жыл бұрын
Bit tricky let me find out some way. Not sure at this time
@rajivkumar-ub6uj2 жыл бұрын
Hi Java Techie, can you also cover the redis queue data structure with multiple producer/consumer services it will be very helpful
@himanshutomar35122 жыл бұрын
Redis pub/sub won't support what you are looking for But You can check Redis Streams which does exactly what you are looking for. Spring also have a good support of Redis Streams 👍
@DJSS8554 жыл бұрын
Clear voice and good explanation
@wiekotamros26343 жыл бұрын
Hello sir I have one problem statement : A number of vendors provide price information for traded instruments; a traded instrument will have different prices from different vendors. Price data from each vendor is to be cached in a local data store and then distributed to interested downstream systems. The cache will have services to allow clients to publish and retrieve data from the store. Clients are interested in getting all prices from a particular vendor or prices for a single instrument from various vendors. can I use spring + redis cache + redis db + redis message broker for this ? can you guide me completing this task ?
@LifeHappy-2 жыл бұрын
did you complete your task?
@personelpurpose15312 жыл бұрын
Hi i needed same help
@Javatechie2 жыл бұрын
Hey of course you can use redis stack here and requirements quite simply to perform this entire operation first you need to design your schema correctly . Are you done with schema designing
@personelpurpose15312 жыл бұрын
@@Javatechie sir i had one doubt my application,after setting the reddis properties how to start and stop the server for that particular project should we extract jar file?
@Javatechie2 жыл бұрын
No you can't, you have to either start or stop the server
@rajatgoyal7623 Жыл бұрын
This git hub repo is not found, please check and mention the correct link.
@arjung10014 жыл бұрын
Hi Basanth, can you please upload one vedio on spring boot with sftp to transfer files from local to remote
@Javatechie4 жыл бұрын
I need to check , I never tried such scenario
@Saravanan-lj9so4 жыл бұрын
Thanks. Very Nice. Unable to get the code from Git.
@Javatechie4 жыл бұрын
What's error you are getting
@ujjvalsharma50554 жыл бұрын
@@Javatechie the link is invalid. I you the correct link can you share it?
@Javatechie4 жыл бұрын
Okay let me recheck
@personelpurpose15312 жыл бұрын
Hi is it possible to install reddis in windows?
@Javatechie2 жыл бұрын
Ofcourse buddy we can
@prometheusli1013 жыл бұрын
could you add subtitles?
@mobinshah14 жыл бұрын
why use Redis when Kafka is super fast. Nice video though. Thank you
@trinhngo7743 жыл бұрын
Nah If your task is only pub/sub the message then i prefer Redis for its fast (much faster than Kafka), simple (less configuration).