An open API service indexing awesome lists of open source software.

https://github.com/redislabs/redis-recommend

Simple Redis Go recommendation engine
https://github.com/redislabs/redis-recommend

Last synced: 9 months ago
JSON representation

Simple Redis Go recommendation engine

Awesome Lists containing this project

README

          

# redis-recommend
## A Simple Redis recommendation engine written in [Go](https://golang.org/).

###

## About
This is a simple recommendation engine written in [Go](https://golang.org/) using [Redis](http://redis.io). The Redis client Go library used is [Redigo](https://github.com/garyburd/redigo).

## Usage

Rate an item:

```
redis-recommend rate
```

Find (n) similar users for all users:

```
redis-recommend batch-update [--results=]
```

Get (n) suggested items for a user:
```
redis-recommend suggest [--results=]
```

Get the probable score a user would give to an item:
```
redis-recommend get-probability
```