Easy PHP Caching in 15 minutes to improve performance - Cache MySQL query results

Поділитися
Вставка
  • Опубліковано 30 лис 2024

КОМЕНТАРІ • 11

  • @Axellplays
    @Axellplays 11 місяців тому +2

    Super folositor, se poate face treaba asta si fara composer ? Ma refer strict folosind php vanilla

    • @pocchin3148
      @pocchin3148 2 місяці тому +1

      You need composer to manage the libraries, and what he used in the video is vanilla php

  • @Ditzj
    @Ditzj Рік тому

    Interesting for sure. You add a PHP link with a variable, but what if you do different queries all from the same URL, like on a map with a search panel beside it ?

    • @brixwork
      @brixwork 7 місяців тому

      Those would be pointless to store in memcache if the variations are huge.. and it would eat up RAM space (this sits on RAM I believe). You pick & choose what to cache. Page content etc. that doesn't change freqently would be great. You can also specify the expiry duration depending on each cache, so write a nice function that determines the type, key and duration well, and boom. Good to go.

  • @yonut
    @yonut Рік тому

    Felicitari! :)

  • @PawanKayat
    @PawanKayat 6 місяців тому

    Very Very Greate Video

  • @Sdirimohamedsalah
    @Sdirimohamedsalah Рік тому

    Difficult to decide which data should be cached

  • @winz1527
    @winz1527 Рік тому

    Great video.

  • @davidchriss9618
    @davidchriss9618 Рік тому

    Thank you

  • @dansonmwangi5660
    @dansonmwangi5660 Рік тому

    Gracias hombre,,

  • @jesuschrist5294
    @jesuschrist5294 9 місяців тому

    ever heard of OOP and classes? :D