Programming with Lakshya
Programming with Lakshya
  • 3
  • 7 513
Complete Guide on Nest JS Caching | Redis
Unlock the full potential of Nestjs with this comprehensive caching guide! Learn how caching works within Nestjs, explore different types like in-memory and Redis, and follow along with a step-by-step implementation tutorial. Optimize your applications for peak performance today!
Official Doc: docs.nestjs.com/techniques/caching
Github Repo: github.com/Lakshya-Saini/Nest-Caching
-- Timestamps --
00:00 - Intro
00:09 - How caching works in nestjs ?
01:09 - Which caching method to use and when ?
01:34 - Implement caching within nest app
nestjs caching
cache manager redis store
nestjs redis cache
nestjs cache manager
caching in nestjs
nestjs cache module
nest caching
redis cache manager
มุมมอง: 2 899

วีดีโอ

A Complete Guide On Nest JS Queue
มุมมอง 4.4K7 หลายเดือนก่อน
In this tutorial, we'll unravel the mysteries of Nest Queue, understanding what it is and how it works. Watch as we explore the integration of Bull Queue and Redis to enhance the queuing capabilities of your Nest.js applications. 🔗 Official Nest Queue Doc: docs.nestjs.com/techniques/queues 🔗 Github Repo Link: github.com/Lakshya-Saini/Nest-Bull-Queue 🔗 Install Docker Desktop: www.docker.com/prod...
Git Crash Course: Simple Guide to Basic & Advanced Commands
มุมมอง 1828 หลายเดือนก่อน
Welcome to the Git Crash Course - the ultimate guide for mastering both basic and advanced Git commands! Whether you're a beginner looking to understand the essentials or a seasoned pro aiming to deepen your expertise, this video has you covered. 🔗 Git Commands: git-scm.com/docs/git#_git_commands 🔗 Install Git: git-scm.com/downloads 🔗 Github Repo: github.com/Lakshya-Saini/Git-Crash-Course 🔗 Top...

ความคิดเห็น

  • @imsarvesh_
    @imsarvesh_ หลายเดือนก่อน

    Great video, we want more such videos

  • @AvinashGokhool
    @AvinashGokhool หลายเดือนก่อน

    very good tutorial. Thanks a lot.

  • @Cyandog
    @Cyandog หลายเดือนก่อน

    This is extremely good content. Thank you very much!

  • @pradeepchand5205
    @pradeepchand5205 2 หลายเดือนก่อน

    hi thanks for video, your explanations is great can you please start microservices using nestjs

  • @thiagotelles6968
    @thiagotelles6968 3 หลายเดือนก่อน

    Thank you!

  • @user-ey2yn6fz8b
    @user-ey2yn6fz8b 3 หลายเดือนก่อน

    Hey Thanks, a lot . loved the content and the efforts u have put in, keep up the good work

  • @sywarbouaziz1646
    @sywarbouaziz1646 3 หลายเดือนก่อน

    hello i'm getting this error Error: connect ETIMEDOUT 172.17.0.2:6379 at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1187:16)

    • @ProgrammingWithLakshya
      @ProgrammingWithLakshya 3 หลายเดือนก่อน

      Hi, you can follow these steps to check if redis is connected. 1. Make sure you've pulled redis image on docker and it's running in a container. 2. Then from terminal, get your container IP for redis and add it as host as mentioned in video. 3. Make sure you're running your nest app in docker. This step is important otherwise your app won't be able to make connection with redis container. Let me know if you're still getting issue.

  • @diegobastos3529
    @diegobastos3529 5 หลายเดือนก่อน

    thanks for The content. I have a question: can we use sqlite instead of redis?

    • @ProgrammingWithLakshya
      @ProgrammingWithLakshya 5 หลายเดือนก่อน

      No we can't. Since bull is built on top of redis and uses it to persist job data. However even if there's a way to configure SQLite, it might not be as performant as Redis for queue management, especially in scenarios with high concurrency or large datasets.

  • @mohammedlotfy
    @mohammedlotfy 5 หลายเดือนก่อน

    It very clear and to the point, i suggest some hot topics microservice, schedulers ..

  • @iUmerFarooq
    @iUmerFarooq 5 หลายเดือนก่อน

    Brother can you please start Nestjs series from beginners to advance level?

  • @robtangled8816
    @robtangled8816 7 หลายเดือนก่อน

    Thanks for the video. It was very clear and on to the point. It would be also great to go a bit further, and talk/show implementations in a monorepo project, if creating a microservice for the job processing and some more advance details. Thanks again!

    • @ProgrammingWithLakshya
      @ProgrammingWithLakshya 7 หลายเดือนก่อน

      Thanks, glad you liked the video. Also thanks for suggestion. Will keep that in mind for upcoming videos.

  • @rafalmo5258
    @rafalmo5258 7 หลายเดือนก่อน

    Thank You for the Tutorial.

  • @tons613
    @tons613 7 หลายเดือนก่อน

    The repo is not updated. Please update

    • @ProgrammingWithLakshya
      @ProgrammingWithLakshya 7 หลายเดือนก่อน

      For easyness I've created separate branch for each step. Pls refer to event-listeners branch for complete code.