This page shows the sample datasets available for each of Redis Modules. Click the below sample dataset to learn more about it.
RediSearch
List of Dataset | Description |
---|---|
Movie Dataset | Contains details on Movie Database listings |
OpenBeerDB | Contains details on Openbeer listings |
User Sample Datasets | Contains details on Openbeer listings |
RedisGraph
List of Dataset | Description |
---|---|
An API of Ice and Fire | Contains details on Ice & Fire API Database listings |
Movie Dataset | Contains details on Movie Database listings |
Redis Graph Bulk Loader | Loading bulk data into Redisgraph |
RedisGears
List of Dataset | Description |
---|---|
Sample IMDB Dataset | Contains details on IMDB Movie Database listings |
RedisJSON
List of Dataset | Description |
---|---|
Employee Profile dataset | Contains details on Sample Employee Profile Database listings |
Sample Dataset | Contains details on Sample listings |
RedisTimeseries
List of Dataset | Description |
---|---|
AirQuality Dataset | Contains details on Air Quality listings |
Stock Price Dataset | Data model for stock prices |
RedisAI
List of Dataset | Description |
---|---|
Animal Recognition Demo | Contains details on Animal Recognition datasets |
Edge Real time Video Analytics | Contains details on Edge Real time Video Analytics datasets |
Chat Bot Demo | Contains details on Chat Bot Demo datasets |
Redis AI Showcase | Contains details on Redis AI Showcase datasets |
RedisBloom
List of Dataset | Description |
---|---|
Unique Website Visitor | Contains details on Unique IP address visitors listings |
How to test drive these Modules For FREE !!
Using Redis Cloud
Sign up for a free account here and get 30MB free tier at $0. Use the button below to register yourself and get started in no seconds.
Using Linux
Following are the pre-requisites for using Redis Modules
Installing Redis
Reference and more detailed steps: here
$ wget http://download.redis.io/redis-stable.tar.gz
$ tar xvzf redis-stable.tar.gz
$ cd redis-stable
$ make
$ make test
$ sudo make install
Build RedisGraph Module(Example)
Reference and more detailed steps: here
# Ubuntu/Linux
$ sudo apt-get install build-essential cmake m4 automake peg libtool autoconf
# Mac
$ brew install cmake m4 automake peg libtool autoconf
$ git clone --recurse-submodules -j8 [https://github.com/RedisGraph/RedisGraph.git](https://github.com/RedisGraph/RedisGraph.git)
$ cd RedisGraph
$ make
Using Docker
docker run -p 6379:6379 redislabs/redismod
redis-cli -h localhost
# Modules
module:name=ft,ver=10613,api=1,filters=0,usedby=[],using=[],options=[]
module:name=rg,ver=10001,api=1,filters=0,usedby=[],using=[ai],options=[]
module:name=bf,ver=20204,api=1,filters=0,usedby=[],using=[],options=[]
module:name=ReJSON,ver=10004,api=1,filters=0,usedby=[],using=[],options=[]
module:name=ai,ver=10001,api=1,filters=0,usedby=[rg],using=[],options=[]
module:name=graph,ver=20019,api=1,filters=0,usedby=[],using=[],options=[]
module:name=timeseries,ver=10207,api=1,filters=0,usedby=[],using=[],options=[]
# Cluster
cluster_enabled:0
# Keyspace
db0:keys=1,expires=0,avg_ttl=0
localhost:6379> info
Top comments (0)