How to check whether the Redis server is running

后端 未结 3 1871
我在风中等你
我在风中等你 2020-12-15 03:59

How to check whether the Redis server is running?

If it\'s not running, I want to fallback to using the database.

I\'m using the FuelPHP framework, so I\'m o

3条回答
  •  庸人自扰
    2020-12-15 04:22

    You can use command line to determine if redis is running:

    redis-cli ping
    

    you should get back

    PONG
    

    that indicates redis is up and running.

提交回复
热议问题