How do you see whats in a channel with Redis?

I am working with nodejs on Windows 7 and have a client which publishes a message and another which subscribes to it. Currently I am not doing anything with the message that is published. In other words there is no client1.on("message",...) method to handle the message.

I maybe wrong but I thought that even though I am not processing the message the message must stay in a durable queue?

If so how can I see what is in the queue?

I just started looking at the Redis api, and I could not see any commands to view a channel.