forked from ServiceStack/ServiceStack.Text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonSerializationBenchmarks.cs
More file actions
182 lines (150 loc) · 5.31 KB
/
JsonSerializationBenchmarks.cs
File metadata and controls
182 lines (150 loc) · 5.31 KB
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
using System;
using System.IO;
using System.Text;
using BenchmarkDotNet.Attributes;
using ServiceStack.Text;
using ServiceStack.Text.Tests.DynamicModels;
using ServiceStack.Text.Json;
namespace ServiceStack.Text.Benchmarks
{
public class ModelWithCommonTypes
{
public char CharValue { get; set; }
public byte ByteValue { get; set; }
public sbyte SByteValue { get; set; }
public short ShortValue { get; set; }
public ushort UShortValue { get; set; }
public int IntValue { get; set; }
public uint UIntValue { get; set; }
public long LongValue { get; set; }
public ulong ULongValue { get; set; }
public float FloatValue { get; set; }
public double DoubleValue { get; set; }
public decimal DecimalValue { get; set; }
public DateTime DateTimeValue { get; set; }
public TimeSpan TimeSpanValue { get; set; }
public Guid GuidValue { get; set; }
public static ModelWithCommonTypes Create(byte i)
{
return new ModelWithCommonTypes
{
ByteValue = i,
CharValue = (char)i,
DateTimeValue = new DateTime(2000, 1, 1 + i),
DecimalValue = i,
DoubleValue = i,
FloatValue = i,
IntValue = i,
LongValue = i,
SByteValue = (sbyte)i,
ShortValue = i,
TimeSpanValue = new TimeSpan(i),
UIntValue = i,
ULongValue = i,
UShortValue = i,
GuidValue = Guid.NewGuid(),
};
}
}
public class JsonSerializationBenchmarks
{
static ModelWithAllTypes allTypesModel = ModelWithAllTypes.Create(3);
static ModelWithCommonTypes commonTypesModel = ModelWithCommonTypes.Create(3);
static MemoryStream stream = new MemoryStream(32768);
const string serializedString = "this is the test string";
readonly string serializedString256 = new string('t', 256);
readonly string serializedString512 = new string('t', 512);
readonly string serializedString4096 = new string('t', 4096);
[Benchmark]
public void SerializeJsonAllTypes()
{
string result = JsonSerializer.SerializeToString<ModelWithAllTypes>(allTypesModel);
}
[Benchmark]
public void SerializeJsonCommonTypes()
{
string result = JsonSerializer.SerializeToString<ModelWithCommonTypes>(commonTypesModel);
}
[Benchmark]
public void SerializeJsonString()
{
string result = JsonSerializer.SerializeToString<string>(serializedString);
}
[Benchmark]
public void SerializeJsonStringToStream()
{
stream.Position = 0;
JsonSerializer.SerializeToStream<string>(serializedString, stream);
}
[Benchmark]
public void SerializeJsonString256ToStream()
{
stream.Position = 0;
JsonSerializer.SerializeToStream<string>(serializedString256, stream);
}
[Benchmark]
public void SerializeJsonString512ToStream()
{
stream.Position = 0;
JsonSerializer.SerializeToStream<string>(serializedString512, stream);
}
[Benchmark]
public void SerializeJsonString4096ToStream()
{
stream.Position = 0;
JsonSerializer.SerializeToStream<string>(serializedString4096, stream);
}
[Benchmark]
public void SerializeJsonStringToStreamDirectly()
{
stream.Position = 0;
string tmp = JsonSerializer.SerializeToString<string>(serializedString);
byte[] arr = Encoding.UTF8.GetBytes(tmp);
stream.Write(arr, 0, arr.Length);
}
[Benchmark]
public void SerializeJsonAllTypesToStream()
{
stream.Position = 0;
JsonSerializer.SerializeToStream<ModelWithAllTypes>(allTypesModel, stream);
}
[Benchmark]
public void SerializeJsonCommonTypesToStream()
{
stream.Position = 0;
JsonSerializer.SerializeToStream<ModelWithCommonTypes>(commonTypesModel, stream);
}
[Benchmark]
public void SerializeJsonStringToStreamUsingDirectStreamWriter()
{
stream.Position = 0;
var writer = new DirectStreamWriter(stream, JsonSerializer.UTF8Encoding);
JsonWriter<string>.WriteRootObject(writer, serializedString);
writer.Flush();
}
[Benchmark]
public void SerializeJsonString256ToStreamUsingDirectStreamWriter()
{
stream.Position = 0;
var writer = new DirectStreamWriter(stream, JsonSerializer.UTF8Encoding);
JsonWriter<string>.WriteRootObject(writer, serializedString256);
writer.Flush();
}
[Benchmark]
public void SerializeJsonString512ToStreamUsingDirectStreamWriter()
{
stream.Position = 0;
var writer = new DirectStreamWriter(stream, JsonSerializer.UTF8Encoding);
JsonWriter<string>.WriteRootObject(writer, serializedString512);
writer.Flush();
}
[Benchmark]
public void SerializeJsonString4096ToStreamUsingDirectStreamWriter()
{
stream.Position = 0;
var writer = new DirectStreamWriter(stream, JsonSerializer.UTF8Encoding);
JsonWriter<string>.WriteRootObject(writer, serializedString4096);
writer.Flush();
}
}
}