Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 979 Bytes

Redis.md

File metadata and controls

24 lines (16 loc) · 979 Bytes

Redis is an open source (BSD licensed), in-memory data structure (key-value) store, used as a database, cache, streaming engine and message broker.
Redis

Documentation | Redis Redis Cheat Sheet https://www.cheatography.com/tasjaevan/cheat-sheets/redis/
Redis Persistence https://redis.io/topics/persistence

Databáze Redis (nejenom) pro vývojáře používající Python - Root.cz

sudo dnf install redis  # fedora-based 
apt install redis-server # debian-based
whereis -b redis-cli
whereis -b redis-server
redis-server redis.conf # run server with log redirect
redis-cli
127.0.0.1:6379>

presentations/redis.conf at master · tisnik/presentations