Coder Social home page Coder Social logo

redis-developer / redis-datasets Goto Github PK

View Code? Open in Web Editor NEW
79.0 7.0 46.0 10.53 MB

A Curated List of Sample Redis Datasets

Home Page: http://github.com/Redis-Developer

Python 98.23% Dockerfile 0.36% HTML 1.35% Shell 0.06%
dataset sample-dataset redis-modules redis-datasets

redis-datasets's Introduction

A Curated List of Sample Redis Datasets

This page shows the sample datasets available for Redis Modules. Click the below sample dataset to lean more about it.

List of Datasets Description
Movie Dataset Contains details on Movie Database listings
OpenBeerDB Contains details on Openbeer listings
User Sample Datasets Contains details on Openbeer listings
List of Datasets 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 Datasets Description
Sample IMDB Dataset Contains details on IMDB Movie Database listings
Sample Kaggle CORD19 Dataset Contains details on Kaggle CORD19 datasets listings
List of Datasets Description
Employee Profile dataset Contains details on Sample Employee Profile Database listings
Shopping Cart Demo Contains details on Sample Shopping cart demo
List of Datasets Description
AirQuality Dataset Contains details on Air Quality listings
Stock Price Dataset Data model for stock prices
Sample Sensor Data Date Model for Sensors data
Real-Time IoT Sensor Data Date Model for IoT Sensors data
Redis Popup Store Date Model to visualize sale progress
List of Datasets 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
List of Datasets Description
Unique Website Visitor Contains details on Unique IP address visitors listings
Fraud Detection Contains details on Fraud Detection System using RedisBloom

Getting Started

Using Redis Cloud
Sign up for a free account https://redis.com/try-free 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
> info modules
# 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

redis-datasets's People

Contributors

ajeetraina avatar lottlizard avatar rrprasan avatar sachin-kottarathodi avatar simonprickett avatar tgrall avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

redis-datasets's Issues

Error running redistimeseries/StockPrice/redisTimeSeriesQuerySamples.py - rts.range( ...

I am using env Python 3.10.6. When I run python3 redisTimeSeriesQuerySamples.py located at redistimeseries/StockPrice/redisTimeSeriesQuerySamples.py I am getting the following error:

Traceback (most recent call last):
  File "/home/igor/vhosts/redis-datasets/redistimeseries/StockPrice/redisTimeSeriesQuerySamples.py", line 23, in <module>
    dailyRSI15MinRange = rts.range(  'DAILYRSI15MINRNG:GS'
  File "/home/igor/vhosts/redis-datasets/redistimeseries/StockPrice/env/lib/python3.10/site-packages/redistimeseries/client.py", line 447, in range
    return self.redis.execute_command(self.RANGE_CMD, *params)
  File "/home/igor/vhosts/redis-datasets/redistimeseries/StockPrice/env/lib/python3.10/site-packages/redis/client.py", line 901, in execute_command
    return self.parse_response(conn, command_name, **options)
  File "/home/igor/vhosts/redis-datasets/redistimeseries/StockPrice/env/lib/python3.10/site-packages/redis/client.py", line 915, in parse_response
    response = connection.read_response()
  File "/home/igor/vhosts/redis-datasets/redistimeseries/StockPrice/env/lib/python3.10/site-packages/redis/connection.py", line 756, in read_response
    raise response
redis.exceptions.ResponseError: TSDB: wrong toTimestamp

Does someone know what could be this issue?
Thanks

Error running docker build

Hi, I'm getting these errors when i run "docker build -t redis-fraud:latest ."

  • Docker desktop 4.9.1
  • Python 3.8
  • Mac OS 12.3.1 (Intel)

ERROR [6/6] RUN pip3 install -r /app/requirements.txt 2.1s
[6/6] RUN pip3 install -r /app/requirements.txt:
#9 1.009 Collecting git+https://github.com/RedisGears/redisgears-py.git (from -r /app/requirements.txt (line 6))
#9 1.010 Cloning https://github.com/RedisGears/redisgears-py.git to /tmp/pip-xrft9j0w-build
#9 2.006 Complete output from command python setup.py egg_info:
#9 2.006 Traceback (most recent call last):
#9 2.006 File "", line 1, in
#9 2.006 File "/usr/lib/python3.6/tokenize.py", line 452, in open
#9 2.006 buffer = _builtin_open(filename, 'rb')
#9 2.006 FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-xrft9j0w-build/setup.py'
#9 2.006
#9 2.006 ----------------------------------------
#9 2.007 Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-xrft9j0w-build/
executor failed running [/bin/sh -c pip3 install -r /app/requirements.txt]: exit code: 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.