Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ _Recommendify is a ruby/redis based recommendation engine_ - The recommendation
+ __"Users that viewed this video also viewed..."__ from `user_id--viewed-->video_id` pairs
+ __"Users that like this venue also like..."__ from `user_id--likes-->venue_id` pairs

Requirements
------------

Installing the recommendify gem will fail if your system does not have the hiredis library.

To install on OSX run:

```shell
brew install hiredis
```

To install on Ubuntu:

```shell
apt-get install libhiredis-dev
```

To install on other platforms:

```shell
git clone https://github.com/antirez/hiredis.git && cd hiredis && make && sudo make install && sudo ldconfig
```


synopsis
Expand Down