-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Program.cs
405 lines (342 loc) · 13.5 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Benchmark.Objects;
using MessagePack;
namespace Benchmark
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Start");
t1();
/*
Protobuf v.2.3.17
NetJSON v.1.2.5
Biser v.1.7
MessagePack 1.7.3.4
*/
/*
Start
Protobuf obj length: 22
Biser Binary obj length: 17
NetJson obj length: 129
Biser Json obj length: 129
Message Pack obj length: 20
Protobuf encode: 1237 ms
Protobuf decode: 1525 ms
Biser Binary encode: 402 ms
Biser Binary decode: 207 ms
NetJson encode: 1314 ms
NetJson decode: 1839 ms
Biser Json encode: 2265 ms
Biser Json decode: 3552 ms
MessagePack encode: 223 ms
MessagePack decode: 182 ms
Press any key
*/
t2();
/*
Start
Protobuf obj length: 28
Biser Binary obj length: 20
NetJson obj length: 182
Biser Json obj length: 182
Message Pack obj length: 23
Protobuf encode: 1418 ms
Protobuf decode: 1810 ms
Biser Binary encode: 473 ms
Biser Binary decode: 269 ms
NetJson encode: 1634 ms
NetJson decode: 2353 ms
Biser Json encode: 2821 ms
Biser Json decode: 4717 ms
MessagePack encode: 279 ms
MessagePack decode: 241 ms
Press any key
*/
Console.WriteLine("Press any key");
Console.ReadLine();
}
static void t1()
{
/*
Start
Protobuf obj length: 22
Biser Binary obj length: 17
NetJson obj length: 129
Biser Json obj length: 129
Protobuf encode: 1184 ms
Protobuf decode: 1569 ms
Biser Binary encode: 396 ms
Biser Binary decode: 209 ms
NetJson encode: 1350 ms
NetJson decode: 1902 ms
Biser Json encode: 2266 ms
Biser Json decode: 3659 ms
Press any key
*/
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
// It's an operational class from https://github.com/hhblaze/Raft.Net/blob/master/Raft/StateMachine/StateLogEntry.cs
StateLogEntry obj = new StateLogEntry()
{
Data = new byte[] { 1, 2, 3, 4, 5 },
Index = 458,
IsCommitted = true,
PreviousStateLogId = 4789,
PreviousStateLogTerm = 447,
RedirectId = 12,
Term = 99
};
Console.WriteLine("t1----------------------------------");
//Protobuf. Warming up, getting length
var pBt = obj.SerializeProtobuf();
Console.WriteLine($"Protobuf obj length: {pBt.Length}");
var pObj = pBt.DeserializeProtobuf<StateLogEntry>();
//Biser. Getting length
var bBt = new Biser.Encoder().Add(obj).Encode();
Console.WriteLine($"Biser Binary obj length: {bBt.Length}");
var bObj = StateLogEntry.BiserDecode(bBt);
//NetJson. Getting length
var njss = NetJSON.NetJSON.Serialize(obj);
Console.WriteLine($"NetJson obj length: {System.Text.Encoding.UTF8.GetBytes(njss).Length}");
var bnjss = NetJSON.NetJSON.Deserialize<StateLogEntry>(njss);
//Biser Json. Getting length
var bjss = new Biser.JsonEncoder(obj).GetJSON();
Console.WriteLine($"Biser Json obj length: {System.Text.Encoding.UTF8.GetBytes(bjss).Length}");
var bbjss = StateLogEntry.BiserJsonDecode(bjss);
//Message Pack
var mBt = MessagePackSerializer.Serialize(obj);
Console.WriteLine($"Message Pack obj length: {mBt.Length}");
var mc2 = MessagePackSerializer.Deserialize<StateLogEntry>(mBt);
Console.WriteLine("");
byte[] tbt = null;
StateLogEntry tobj = null;
sw.Start();
for (int i=0;i<1000000;i++)
{
tbt = obj.SerializeProtobuf();
}
sw.Stop();
Console.WriteLine($"Protobuf encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
tobj = pBt.DeserializeProtobuf<StateLogEntry>();
}
sw.Stop();
Console.WriteLine($"Protobuf decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
tbt = new Biser.Encoder().Add(obj).Encode();
}
sw.Stop();
Console.WriteLine($"Biser Binary encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
tobj = StateLogEntry.BiserDecode(bBt);
}
sw.Stop();
Console.WriteLine($"Biser Binary decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
njss = NetJSON.NetJSON.Serialize(obj);
}
sw.Stop();
Console.WriteLine($"NetJson encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
bnjss = NetJSON.NetJSON.Deserialize<StateLogEntry>(njss);
}
sw.Stop();
Console.WriteLine($"NetJson decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
bjss = new Biser.JsonEncoder(obj).GetJSON();
}
sw.Stop();
Console.WriteLine($"Biser Json encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
bbjss = StateLogEntry.BiserJsonDecode(bjss);
}
sw.Stop();
Console.WriteLine($"Biser Json decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
mBt = MessagePackSerializer.Serialize(obj);
}
sw.Stop();
Console.WriteLine($"MessagePack encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
mc2 = MessagePackSerializer.Deserialize<StateLogEntry>(mBt);
}
sw.Stop();
Console.WriteLine($"MessagePack decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
}
static void t2()
{
/*
Start
Protobuf obj length: 28
Biser Binary obj length: 20
NetJson obj length: 182
Biser Json obj length: 182
Protobuf encode: 1367 ms
Protobuf decode: 1909 ms
Biser Binary encode: 464 ms
Biser Binary decode: 271 ms
NetJson encode: 1687 ms
NetJson decode: 2383 ms
Biser Json encode: 2871 ms
Biser Json decode: 4748 ms
Press any key
*/
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
// It's an operational class from https://github.com/hhblaze/Raft.Net/blob/master/Raft/StateMachine/StateLogEntry.cs
StateLogEntry sle = new StateLogEntry()
{
Data = new byte[] { 1, 2, 3, 4, 5 },
Index = 458,
IsCommitted = true,
PreviousStateLogId = 4789,
PreviousStateLogTerm = 447,
RedirectId = 12,
Term = 99
};
// It's an operational class from https://github.com/hhblaze/Raft.Net/blob/master/Raft/Objects/StateLogEntrySuggestion.cs
StateLogEntrySuggestion obj = new StateLogEntrySuggestion()
{
IsCommitted = true,
LeaderTerm = 77,
StateLogEntry = sle
};
Console.WriteLine("t2----------------------------------");
//Protobuf. Warming up, getting length
var pBt = obj.SerializeProtobuf();
Console.WriteLine($"Protobuf obj length: {pBt.Length}");
var pObj = pBt.DeserializeProtobuf<StateLogEntrySuggestion>();
//Biser. Getting length
var bBt = new Biser.Encoder().Add(obj).Encode();
Console.WriteLine($"Biser Binary obj length: {bBt.Length}");
var bObj = StateLogEntry.BiserDecode(bBt);
//NetJson. Getting length
var njss = NetJSON.NetJSON.Serialize(obj);
Console.WriteLine($"NetJson obj length: {System.Text.Encoding.UTF8.GetBytes(njss).Length}");
var bnjss = NetJSON.NetJSON.Deserialize<StateLogEntrySuggestion>(njss);
//Biser Json. Getting length
var bjss = new Biser.JsonEncoder(obj).GetJSON();
Console.WriteLine($"Biser Json obj length: {System.Text.Encoding.UTF8.GetBytes(bjss).Length}");
var bbjss = StateLogEntrySuggestion.BiserJsonDecode(bjss);
//Message Pack
var mBt = MessagePackSerializer.Serialize(obj);
Console.WriteLine($"Message Pack obj length: {mBt.Length}");
var mc2 = MessagePackSerializer.Deserialize<StateLogEntrySuggestion>(mBt);
Console.WriteLine("");
byte[] tbt = null;
StateLogEntrySuggestion tobj = null;
sw.Start();
for (int i = 0; i < 1000000; i++)
{
tbt = obj.SerializeProtobuf();
}
sw.Stop();
Console.WriteLine($"Protobuf encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
tobj = pBt.DeserializeProtobuf<StateLogEntrySuggestion>();
}
sw.Stop();
Console.WriteLine($"Protobuf decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
tbt = new Biser.Encoder().Add(obj).Encode();
}
sw.Stop();
Console.WriteLine($"Biser Binary encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
tobj = StateLogEntrySuggestion.BiserDecode(bBt);
}
sw.Stop();
Console.WriteLine($"Biser Binary decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
njss = NetJSON.NetJSON.Serialize(obj);
}
sw.Stop();
Console.WriteLine($"NetJson encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
bnjss = NetJSON.NetJSON.Deserialize<StateLogEntrySuggestion>(njss);
}
sw.Stop();
Console.WriteLine($"NetJson decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
bjss = new Biser.JsonEncoder(obj).GetJSON();
}
sw.Stop();
Console.WriteLine($"Biser Json encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
bbjss = StateLogEntrySuggestion.BiserJsonDecode(bjss);
}
sw.Stop();
Console.WriteLine($"Biser Json decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
mBt = MessagePackSerializer.Serialize(obj);
}
sw.Stop();
Console.WriteLine($"MessagePack encode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
sw.Start();
for (int i = 0; i < 1000000; i++)
{
mc2 = MessagePackSerializer.Deserialize<StateLogEntrySuggestion>(mBt);
}
sw.Stop();
Console.WriteLine($"MessagePack decode: {sw.ElapsedMilliseconds} ms");
sw.Reset();
}
}
}