Program.cs 494 B

123456789101112131415161718192021
  1. using Garnet;
  2. namespace ProductionLineMonitorGarnet
  3. {
  4. internal class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. try
  9. {
  10. using var server = new GarnetServer(args);
  11. server.Start();
  12. Thread.Sleep(Timeout.Infinite);
  13. }
  14. catch (Exception ex)
  15. {
  16. Console.WriteLine($"由于异常无法初始化服务器:{ex.Message}");
  17. }
  18. }
  19. }
  20. }