skip to Main Content

I have used laravel redis but when i trying store cache data to redis it will show in all other pcs like server side how can i make client side?

I have used redis server for my website
Thank in advance.

2

Answers


  1. OK, let me try to explain you something:

    Redis is a server side cache system. check https://laravel.com/docs/6.x/redis#introduction

    So if you saved data on it make sure you use proper methods to make the data available to an allowed user, you can use authentication to achieve this.

    Hope it helps.

    Login or Signup to reply.
  2. Redis is a server side Cache service and mostly use for Data caching.

    Read about Data Caching topic for more info.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search