Beispiel #1
0
        static void Main(string[] args)
        {
            var listener = new ConsoleTraceListener();
            string url = args.Length == 1 ? args[0] : "http://localhost:91/";

            var server = new CacheServer(url);
            server.Start();

            Console.WriteLine("Running cache server on {0}", url);
            Console.WriteLine("Press 'q' to quit.");
            Console.WriteLine("Press 'v' to view the cache data.");
            Console.WriteLine("Press 'd' to enable debug mode.");

            var uri = new Uri(url);
            string prompt = String.Format("[{0}:{1}]: ", uri.Host, uri.Port);

            while (true)
            {
                Console.Write(prompt);
                var ki = Console.ReadKey();
                Console.WriteLine();
                if (ki.Key == ConsoleKey.Q)
                {
                    break;
                }

                if (ki.Key == ConsoleKey.D)
                {
                    if (Debug.AutoFlush)
                    {
                        Debug.Listeners.Remove(listener);
                    }
                    else
                    {
                        Debug.Listeners.Add(listener);
                    }

                    Debug.AutoFlush = !Debug.AutoFlush;
                    Log("Turning debugging {0}.", Debug.AutoFlush ? "on" : "off");
                }

                if (ki.Key == ConsoleKey.V)
                {
                    var entries = server.Store.GetAll().Take(100).ToList();
                    if (entries.Count == 0)
                    {
                        Log("Nothing in the cache.");
                    }
                    else
                    {
                        foreach (var item in entries)
                        {
                            Console.WriteLine(item.Key + " = " + item.Value);
                        }
                    }
                }
            }
        }
Beispiel #2
0
 public CacheConnection(CacheServer cache)
 {
     _cache = cache;
 }