Skip to content

Instantly share code, notes, and snippets.

@ichinya
Last active November 18, 2021 04:39
Show Gist options
  • Select an option

  • Save ichinya/cb00ec4557e125e7ce3ea9297ac60296 to your computer and use it in GitHub Desktop.

Select an option

Save ichinya/cb00ec4557e125e7ce3ea9297ac60296 to your computer and use it in GitHub Desktop.
Redis
# проверить работу
sudo apt policy redis-server
# установить
sudo apt install redis-server
# запустить
sudo service redis-server start
# проверить
redis-cli
>ping
ответ PONG
# laravel
composer require predis/predis
# в .env
QUEUE_CONNECTION=redis
# мониторинг в ларавел
composer require laravel/horizon
php artisan horizon:install
# запустить
php artisan horizon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment