示例#1
0
        private void btnSerialize_Click(object sender, EventArgs e)
        {
            Person john = new Person
            {
                Id     = 1234,
                Name   = "John Doe",
                Email  = "*****@*****.**",
                Phones = { new PhoneNumber {
                               Number = "555-4321", Type = PhoneType.Home
                           } }
            };

            POCO.Person john2 = new POCO.Person
            {
                Id     = 1234,
                Name   = "John Doe",
                Email  = "*****@*****.**",
                Phones = new List <POCO.PhoneNumber>()
                {
                    new POCO.PhoneNumber {
                        Number = "555-4321", Type = POCO.PhoneType.Home
                    }
                }
            };
            MessagePack.Person john3 = new MessagePack.Person
            {
                Id     = 1234,
                Name   = "John Doe",
                Email  = "*****@*****.**",
                Phones = new List <MessagePack.PhoneNumber>()
                {
                    new MessagePack.PhoneNumber {
                        Number = "555-4321", Type = MessagePack.PhoneType.Home
                    }
                }
            };

            //#Protocol Buffer
            using (var output = File.Create("john.dat"))
            {
                john.WriteTo(output);
            }
            //#Json
            using (var output = File.CreateText("john.json"))
            {
                JsonSerializer serializer = new JsonSerializer();
                serializer.Serialize(output, john2);
            }
            //#Messag Pack
            using (var output = File.Create("john.mp"))
            {
                MessagePackSerializer.Serialize <MessagePack.Person>(output, john3);
            }

            FileInfo protoBufFile    = new FileInfo("john.dat");
            FileInfo jsonFile        = new FileInfo("john.json");
            FileInfo messagePackFile = new FileInfo("john.mp");

            MessageBox.Show($"ProtoBufFile={protoBufFile.Length}, JsonFile={jsonFile.Length}, MessagePackFile={messagePackFile.Length}");
        }
示例#2
0
        private void btnParseSpeed_Click(object sender, EventArgs e)
        {
            Stopwatch sw                  = new Stopwatch();
            long      protoBufSpeed       = 0;
            long      jsonSpeed           = 0;
            long      messagePackSpeed    = 0;
            long      messagePacklz4Speed = 0;
            long      protoBuf2Speed      = 0;

            //#測試MessagePack的速度
            sw.Reset();
            Thread.Sleep(1000);
            MessagePack.Person john3;
            byte[]             input3 = File.ReadAllBytes("john.mp");
            sw.Start();
            for (int i = 0; i < 1000000; i++)
            {
                john3 = MessagePackSerializer.Deserialize <MessagePack.Person>(input3);
            }
            sw.Stop();
            messagePackSpeed = sw.ElapsedMilliseconds;
            //#測試MessagePack LZ4的速度
            sw.Reset();
            Thread.Sleep(1000);
            MessagePack.Person john5;
            byte[]             input5 = File.ReadAllBytes("john.lz4");
            sw.Start();
            for (int i = 0; i < 1000000; i++)
            {
                john5 = LZ4MessagePackSerializer.Deserialize <MessagePack.Person>(input5);
            }
            sw.Stop();
            messagePacklz4Speed = sw.ElapsedMilliseconds;

            //#測試ProtoBuf解析的速度
            sw.Reset();
            Thread.Sleep(1000);
            Person john;

            byte[] input = File.ReadAllBytes("john.dat");
            sw.Start();
            for (int i = 0; i < 1000000; i++)
            {
                john = Person.Parser.ParseFrom(input);
            }
            sw.Stop();
            protoBufSpeed = sw.ElapsedMilliseconds;
            sw.Reset();
            Thread.Sleep(1000);

            //#測試ProtoBuf2解析的速度
            sw.Reset();
            Thread.Sleep(1000);
            POCO.Person john4;
            sw.Start();
            for (int i = 0; i < 1000000; i++)
            {
                john4 = new POCO.Person(Person.Parser.ParseFrom(input));
            }
            sw.Stop();
            protoBuf2Speed = sw.ElapsedMilliseconds;
            sw.Reset();
            Thread.Sleep(1000);

            //#測試Json解析的速度
            string input2 = File.ReadAllText("john.json");

            POCO.Person john2;
            sw.Start();
            for (int i = 0; i < 1000000; i++)
            {
                john2 = JsonConvert.DeserializeObject <POCO.Person>(input2);
            }
            sw.Stop();
            jsonSpeed = sw.ElapsedMilliseconds;

            MessageBox.Show($"ProtoBufSpeed={protoBufSpeed}, ProtoBuf2Speed={protoBuf2Speed}, JsonSpeed={jsonSpeed}, MessagePackSpeed={messagePackSpeed}, MessagePacklz4Speed={messagePacklz4Speed}");
        }