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

https://github.com/andrewmcloud/recommender


https://github.com/andrewmcloud/recommender

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# recommender

A simple redis based recommender engine, derived from redis-labs go example

## Installation

Install dependencies with lein

## Usage

Currently only an API. Run in REPL

Add Rating
```clojure
(rate "user-name" "item-name" rating)
```

Update Database
```clojure
(update-db max-similar-users)
```

Suggest
```clojure
(suggest "users-name" max-suggestions)
```