Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 1.23 KB

checkRedis.md

File metadata and controls

20 lines (19 loc) · 1.23 KB

How to Check the Redis Message Broker While Running the Game Simulator

  1. Install Redis Insight.
  • Redis Insight is a GUI tool for visualizing data stored in Redis, whether it's in a database context or a message queue. For our use case, we will use redis for both a database and as a message broker.
  1. Add Your Redis Instance in Redis Insight
  • Open Redis Insight and click Add Redis database. Configure the connection with the following settings: redisInsight Note: You're connecting to Redis to inspect the published messages for this scenario
  1. Verify a Successful Connection
  • You will see a popup mentioning that the database was successfully added: dbAddedRedisInsight
  1. Explore the Redis Stream
  • In the Redis Insight, simply click the Redis Alias 127.0.0.1:6379. You will see available streams which Redis uses to handle message queues and pub/sub data: redisStream
  1. View Game Data
  • Select the stream where your volleyball game data is being published. In this case, you should see data associated with the game topic that the Game Simulator is publishing to. pubsubRedisData