← Back to blog

Redis as cache and job queue in Laravel

2026-05-03
Redis as Cache and Job Queue in Laravel

Redis as Cache and Job Queue in Laravel

In this article, we will explore how to use Redis as a cache and job queue in a Laravel application. We will cover the benefits of using Redis, how to install and configure it, and provide practical examples of how to use it in your Laravel application.

Benefits of Using Redis

Redis is an in-memory data store that can be used as a cache, a message broker, and a database. It provides several benefits, including:

Installing and Configuring Redis

To use Redis in your Laravel application, you need to install and configure it first. Here are the steps:

  1. Install Redis: You can install Redis on your server using the following command:<code>sudo apt-get install redis-server</code>
  2. Configure Redis: You need to configure Redis to use the correct port and host. You can do this by editing the Redis configuration file:<code>sudo nano /etc/redis/redis.conf</code>
  3. Start Redis: Once you have configured Redis, you need to start it:<code>sudo service redis-server start</code>

Using Redis as a Cache in Laravel Redis as Cache and Job Queue in Laravel

Using Redis as a Cache in Laravel

In Laravel, you can use Redis as a cache by installing the Redis package and configuring it in your Laravel application. Here are the steps:

  1. Install the Redis package: You can install the Redis package using the following command:<code>composer require predis/predis</code>
  2. Configure Redis in Laravel: You need to configure Redis in your Laravel application by editing the <code>config/cache.php</code> file:<code> <?php return [ 'default' => env('CACHE_DRIVER', 'redis'), 'connections' => [ 'redis' => [ 'driver' => 'redis', 'host' => env('REDIS_HOST', '127.0.0.1'), 'port' => env('REDIS_PORT', 6379), 'database' => env('REDIS_DB', 0), ], ], ]; </?php </code>
  3. Use Redis as a cache in your Laravel application: Once you have configured Redis, you can use it as a cache in your Laravel application by using the <code>Cache</code> facade:<code> use Illuminate\Support\Facades\Cache; // Set a cache Cache::put('key', 'value', 60); // Get a cache $value = Cache::get('key'); </code>

Using Redis as a Job Queue in Laravel

In Laravel, you can use Redis as a job queue by installing the Redis package and configuring it in your Laravel application. Here are the steps:

  1. Install the Redis package: You can install the Redis package using the following command:<code>composer require predis/predis</code>
  2. Configure Redis in Laravel: You need to configure Redis in your Laravel application by editing the <code>config/queue.php</code> file:<code> <?php return [ 'default' => env('QUEUE_DRIVER', 'redis'), 'connections' => [ 'redis' => [ 'driver' => 'redis', 'host' => env('REDIS_HOST', '127.0.0.1'), 'port' => env('REDIS_PORT', 6379), 'database' => env('REDIS_DB', 0), ], ], ]; </?php </code>
  3. Use Redis as a job queue in your Laravel application: Once you have configured Redis, you can use it as a job queue in your Laravel application by using the <code>Queue</code> facade:<code> use Illuminate\Support\Facades\Queue; // Push a job onto the queue Queue::push(new MyJob); // Process the queue Queue::marshal(); </code>

Conclusion

In this article, we have explored how to use Redis as a cache and job queue in a Laravel application. We have covered the benefits of using Redis, how to install and configure it, and provided practical examples of how to use it in your Laravel application.

By following the steps outlined in this article, you can improve the performance and scalability of your Laravel application by using Redis as a cache and job queue.