Skip to content

Commit e6b109c

Browse files
committed
Fix artisan link
1 parent 296ce62 commit e6b109c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Pipelining should be used when you need to send many commands to the server in o
101101

102102
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.
103103

104-
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:
104+
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:
105105

106106
<?php
107107

0 commit comments

Comments
 (0)