# redis-recommend **Repository Path**: mirrors_RedisLabs/redis-recommend ## Basic Information - **Project Name**: redis-recommend - **Description**: Simple Redis Go recommendation engine - **Primary Language**: Unknown - **License**: BSD-2-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-09-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ```