https://github.com/redislabs/redis-for-dummies
https://github.com/redislabs/redis-for-dummies
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/redislabs/redis-for-dummies
- Owner: RedisLabs
- Created: 2018-07-11T21:31:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-11-19T18:22:17.000Z (over 7 years ago)
- Last Synced: 2025-04-06T17:03:00.729Z (about 1 year ago)
- Language: JavaScript
- Size: 26.4 KB
- Stars: 15
- Watchers: 6
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# redis-for-dummies
This is the source code that accompanies the book _Redis for Dummies_.
The repo is divided into two sections:
* [simple-application](https://github.com/RedisLabs/redis-for-dummies/tree/master/simple-application), which are bare-bones scripts that illustrate how you can use multiple Redis commands to accomplish a Create-Read-Update-Delete (CRUD) API.
* [crdt application](https://github.com/RedisLabs/redis-for-dummies/tree/master/crdt-application), which is a series of scripts that illustrate the conflict-free replicated data type capabilities of Redis Enterprise.
Both sections are written in Node.js and are designed to run with Redis Enterprise although they will run on Redis open source. The CRDT application will run in open source, but it will not do anything special as the resolution described in the book is based on Redis Entperirse CRDTs.
The sections also make use of bash scripts and assume a unix-like environment. The CRDT application requires Docker.