Back openDesk Edu for a sovereign, open-source education — every vote counts.
Vote nowSave products you love by clicking the heart icon.
PostgreSQL, Redis, and Neo4j — query patterns, config, and admin commands in one reference
No payment required
Three cheatsheets for the databases you're most likely to run in production.
€9.00
# Connect to a local Redis instance
redis-cli
# Set and get a key
SET user:1001:name "Alice"
GET user:1001:name
# Add to a sorted set
ZADD leaderboard 100 "player1" 85 "player2" 120 "player3"
# Publish to a channel
PUBLISH notifications "Deployment complete"
# Check server info
INFO server