caching

  • How to implement caching in Symfony 5+

    Caching is an important concept in web development that helps to improve the performance of web applications. Symfony 5+ provides various caching mechanisms that you can use to improve the performance of your application, mostly for requests

    ...
  • How to implement Symfony Cache with Redis

    Symfony cache is a very powerful tool for caching resource-intensive time-consuming operations, like a report or anything that makes sense to have it cached. In my case, I use to cache in advance results I know in advance the users will be

    ...