Skip to content
Matthew Dennis edited this page Nov 26, 2015 · 2 revisions

Welcome to the Munq.Redis wiki! Very simple to use:

            using (var client = new RedisClient())
            {
                try
                {
                    Console.Write("Sending Ping - ");
                    await client.SendPingAsync();
                    if (await client.ExpectConstStringAsync("PONG"))
                        Console.WriteLine("Pong response received.");
                    else
                        Console.WriteLine("Unexpected string returned.");

#Command Groups

Group Description
Keys Commands that act on objects generically based on Key
Strings Commands that act on Redis String objects
Hash Commands that act on Redis Hashes
Clone this wiki locally