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
- Host: GitHub
- URL: https://github.com/redislabs/redis-recommend
- Owner: RedisLabs
- License: bsd-2-clause
- Created: 2016-07-19T07:59:34.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-08T09:50:30.000Z (almost 10 years ago)
- Last Synced: 2025-06-16T13:04:55.929Z (about 1 year ago)
- Language: Go
- Size: 8.79 KB
- Stars: 62
- Watchers: 9
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```