Devlog #11- How to make your DB fast by using Caching

Sdílet
Vložit
  • čas přidán 27. 07. 2024
  • In this dev log I talk about different kinds of caching approaches which you can use to make your Database Faster.
    Here are the caching strategies which I cover in this video:
    1. Side Cache
    2. Read-Through Cache
    3. Write-Through Cache
    4.Write-Behind Cache
    5. Write-Around Cache.
    Music
    “Communicator” by Reed Mathis from CZcams Creators Music
    Video Editing
    Podcast Productions London
    www.podcastproductionslondon....

Komentáře • 17

  • @shis10
    @shis10 Před 5 dny

    Amazing video.🙌🏻💯

  • @bommuu3524
    @bommuu3524 Před 2 lety +2

    At one place gave the full clarity on the cache. Thanks for your efforts

  • @bluex217
    @bluex217 Před rokem +4

    What is the difference between "write" and "hydrate" used by the write through and write behind caches? Those 2 diagrams look the same otherwise and I'm guessing the difference is that 1 hosts the cache && DB on separate machines

    • @superthread_devlog
      @superthread_devlog  Před rokem +3

      Sorry about the late reply, I just noticed this comment. Hydrate means you pull the data from DB into RAM so next time someone tries to pull the record, they go straight to RAM without the need query the actual DB.

  • @misluyu
    @misluyu Před 2 měsíci

    finally found this!

  • @krishnakrishna417
    @krishnakrishna417 Před rokem

    Thanks very high quality content. What is the drawing tool you used

  • @jorisjansen2892
    @jorisjansen2892 Před 2 lety

    Hi David,
    This concept looks very interesting, I'm only familiar with the "regular" way of caching. I can't really find any examples or more in detail explanations on the internet about how to implement the other cases. Do you have any good resources for that?
    By the way, I love the tech stack that you choose! But, I couldn't figure out which platform you choose for Mobile development?
    And my last question, how are the open positions for developors doing at the moment?
    Cheers

    • @kimjong-un8543
      @kimjong-un8543 Před 2 lety

      for more use cases look up redis
      they most likely used pwa for mobile development
      and the positions are open as per their website :)

  • @ketchupparty9997
    @ketchupparty9997 Před 4 měsíci

    Nice video

  • @saravninja
    @saravninja Před 2 lety

    Thanks for explanation; whether Cache is referred as SRAM or DRAM?

  • @wilbertdune
    @wilbertdune Před 5 měsíci

    how did you write this in GO lang? thanks