Introduction
In this challenge, you'll implement a Redis-based counter to track website homepage visits. The goal is to connect to a Redis server using redis-cli
, increment the homepage_visits
key by 1 using the INCR
command, and then exit the redis-cli
.
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
redis(("Redis")) -.-> redis/RedisGroup(["Redis"])
redis/RedisGroup -.-> redis/access_cli("Connect Using CLI")
redis/RedisGroup -.-> redis/increment_int("Increase Integer Value")
subgraph Lab Skills
redis/access_cli -.-> lab-552163{{"Increment Redis Counter for Website Visits"}}
redis/increment_int -.-> lab-552163{{"Increment Redis Counter for Website Visits"}}
end