Skip to content

Commit

Permalink
Add either and new line
Browse files Browse the repository at this point in the history
  • Loading branch information
tillkruss authored Sep 22, 2016
1 parent 3f5a1b6 commit 4e05103
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
<a name="introduction"></a>
## Introduction

[Redis](http://redis.io) is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain [strings](http://redis.io/topics/data-types#strings), [hashes](http://redis.io/topics/data-types#hashes), [lists](http://redis.io/topics/data-types#lists), [sets](http://redis.io/topics/data-types#sets), and [sorted sets](http://redis.io/topics/data-types#sorted-sets). Before using Redis with Laravel, you will need to install the `predis/predis` package via Composer:
[Redis](http://redis.io) is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain [strings](http://redis.io/topics/data-types#strings), [hashes](http://redis.io/topics/data-types#hashes), [lists](http://redis.io/topics/data-types#lists), [sets](http://redis.io/topics/data-types#sets), and [sorted sets](http://redis.io/topics/data-types#sorted-sets).

Before using Redis with Laravel, you will either need to install the `predis/predis` package via Composer:

composer require predis/predis

Expand Down

0 comments on commit 4e05103

Please sign in to comment.