Skip to content

Commit

Permalink
Merge pull request laravel#1663 from davesouthey/5.1
Browse files Browse the repository at this point in the history
Fix artisan link
  • Loading branch information
taylorotwell committed Jul 8, 2015
2 parents 296ce62 + e6b109c commit 15a8a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Pipelining should be used when you need to send many commands to the server in o

Laravel also provides a convenient interface to the Redis `publish` and `subscribe` commands. These Redis commands allow you to listen for messages on a given "channel". You may publish messages to the channel from another application, or even using another programming language, allowing easy communication between applications / processes.

First, let's setup a listener on a channel via Redis using the `subscribe` method. We will place this method call within an [Artisan command](/docs/{{version}}/commands) since calling the `subscribe` method begins a long-running process:
First, let's setup a listener on a channel via Redis using the `subscribe` method. We will place this method call within an [Artisan command](/docs/{{version}}/artisan) since calling the `subscribe` method begins a long-running process:

<?php

Expand Down

0 comments on commit 15a8a45

Please sign in to comment.