File tree 9 files changed +33
-42
lines changed
src/BenchmarksApps/TechEmpower/PlatformBenchmarks
9 files changed +33
-42
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,8 @@ private enum State
252
252
}
253
253
254
254
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
255
- private static BufferWriter < WriterAdapter > GetWriter ( PipeWriter pipeWriter , int sizeHint ) => new ( new ( pipeWriter ) , sizeHint ) ;
255
+ private static BufferWriter < WriterAdapter > GetWriter ( PipeWriter pipeWriter , int sizeHint )
256
+ => new ( new ( pipeWriter ) , sizeHint ) ;
256
257
257
258
[ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
258
259
private static ChunkedBufferWriter < WriterAdapter > GetChunkedWriter ( PipeWriter pipeWriter , int chunkSizeHint )
@@ -290,7 +291,7 @@ public ParsingAdapter(BenchmarkApplication requestHandler)
290
291
=> RequestHandler = requestHandler ;
291
292
292
293
public void OnStaticIndexedHeader ( int index )
293
- => RequestHandler . OnStaticIndexedHeader ( index ) ;
294
+ => RequestHandler . OnStaticIndexedHeader ( index ) ;
294
295
295
296
public void OnStaticIndexedHeader ( int index , ReadOnlySpan < byte > value )
296
297
=> RequestHandler . OnStaticIndexedHeader ( index , value ) ;
Original file line number Diff line number Diff line change @@ -56,8 +56,8 @@ public bool Return(ChunkedBufferWriter<WriterAdapter> writer)
56
56
}
57
57
}
58
58
59
- private readonly static SliceFactory < List < Fortune > > FortunesTemplateFactory = RazorSlice . ResolveSliceFactory < List < Fortune > > ( "/Templates/Fortunes .cshtml" ) ;
60
- private readonly static SliceFactory < List < FortuneDapper > > FortunesDapperTemplateFactory = RazorSlice . ResolveSliceFactory < List < FortuneDapper > > ( "/Templates/FortunesDapper .cshtml" ) ;
59
+ private readonly static SliceFactory < List < FortuneUtf8 > > FortunesTemplateFactory = RazorSlice . ResolveSliceFactory < List < FortuneUtf8 > > ( "/Templates/FortunesUtf8 .cshtml" ) ;
60
+ private readonly static SliceFactory < List < FortuneUtf16 > > FortunesDapperTemplateFactory = RazorSlice . ResolveSliceFactory < List < FortuneUtf16 > > ( "/Templates/FortunesUtf16 .cshtml" ) ;
61
61
private readonly static SliceFactory < List < FortuneEf > > FortunesEfTemplateFactory = RazorSlice . ResolveSliceFactory < List < FortuneEf > > ( "/Templates/FortunesEf.cshtml" ) ;
62
62
63
63
[ ThreadStatic ]
Original file line number Diff line number Diff line change 1
- // Copyright (c) .NET Foundation. All rights reserved.
2
- // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1
+ // Copyright (c) .NET Foundation. All rights reserved.
2
+ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3
3
4
4
using System ;
5
5
using System . Linq ;
@@ -25,25 +25,15 @@ private static string CreateBatch(int batchSize)
25
25
{
26
26
var sb = StringBuilderCache . Acquire ( ) ;
27
27
28
- Func < int , string > paramNameGenerator = i => "$" + i ;
29
-
30
- sb . AppendLine ( "UPDATE world SET randomNumber = CASE id" ) ;
31
- for ( var i = 0 ; i < batchSize * 2 ; )
32
- {
33
- sb . AppendLine ( $ "when { paramNameGenerator ( ++ i ) } then { paramNameGenerator ( ++ i ) } ") ;
34
- }
35
- sb . AppendLine ( "else randomnumber" ) ;
36
- sb . AppendLine ( "end" ) ;
37
- sb . Append ( "where id in (" ) ;
38
- for ( var i = 1 ; i < batchSize * 2 ; i += 2 )
28
+ sb . Append ( "UPDATE world SET randomNumber = temp.randomNumber FROM (VALUES " ) ;
29
+ var c = 1 ;
30
+ for ( var i = 0 ; i < batchSize ; i ++ )
39
31
{
40
- sb . Append ( paramNameGenerator ( i ) ) ;
41
- if ( i < batchSize * 2 - 1 )
42
- {
43
- sb . AppendLine ( ", " ) ;
44
- }
32
+ if ( i > 0 )
33
+ sb . Append ( ", " ) ;
34
+ sb . Append ( $ "(${ c ++ } , ${ c ++ } )") ;
45
35
}
46
- sb . Append ( ") " ) ;
36
+ sb . Append ( " ORDER BY 1) AS temp(id, randomNumber) WHERE temp.id = world.id " ) ;
47
37
48
38
return _queries [ batchSize ] = StringBuilderCache . GetStringAndRelease ( sb ) ;
49
39
}
Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ public sealed class DapperDb
13
13
public DapperDb ( AppSettings appSettings )
14
14
=> _connectionString = appSettings . ConnectionString ;
15
15
16
- public async Task < List < FortuneDapper > > LoadFortunesRows ( )
16
+ public async Task < List < FortuneUtf16 > > LoadFortunesRows ( )
17
17
{
18
- List < FortuneDapper > result ;
18
+ List < FortuneUtf16 > result ;
19
19
20
20
using ( var db = new NpgsqlConnection ( _connectionString ) )
21
21
{
22
22
// Note: don't need to open connection if only doing one thing; let dapper do it
23
- result = ( await db . QueryAsync < FortuneDapper > ( "SELECT id, message FROM fortune" ) ) . AsList ( ) ;
23
+ result = ( await db . QueryAsync < FortuneUtf16 > ( "SELECT id, message FROM fortune" ) ) . AsList ( ) ;
24
24
}
25
25
26
- result . Add ( new FortuneDapper ( id : 0 , message : "Additional fortune added at request time." ) ) ;
26
+ result . Add ( new FortuneUtf16 ( id : 0 , message : "Additional fortune added at request time." ) ) ;
27
27
result . Sort ( ) ;
28
28
29
29
return result ;
Original file line number Diff line number Diff line change 5
5
6
6
namespace PlatformBenchmarks
7
7
{
8
- public readonly struct FortuneDapper : IComparable < FortuneDapper > , IComparable
8
+ public readonly struct FortuneUtf16 : IComparable < FortuneUtf16 > , IComparable
9
9
{
10
- public FortuneDapper ( int id , string message )
10
+ public FortuneUtf16 ( int id , string message )
11
11
{
12
12
Id = id ;
13
13
Message = message ;
@@ -20,6 +20,6 @@ public FortuneDapper(int id, string message)
20
20
public int CompareTo ( object obj ) => throw new InvalidOperationException ( "The non-generic CompareTo should not be used" ) ;
21
21
22
22
// Performance critical, using culture insensitive comparison
23
- public int CompareTo ( FortuneDapper other ) => string . CompareOrdinal ( Message , other . Message ) ;
23
+ public int CompareTo ( FortuneUtf16 other ) => string . CompareOrdinal ( Message , other . Message ) ;
24
24
}
25
25
}
Original file line number Diff line number Diff line change 5
5
6
6
namespace PlatformBenchmarks
7
7
{
8
- public readonly struct Fortune : IComparable < Fortune > , IComparable
8
+ public readonly struct FortuneUtf8 : IComparable < FortuneUtf8 > , IComparable
9
9
{
10
- public Fortune ( int id , byte [ ] message )
10
+ public FortuneUtf8 ( int id , byte [ ] message )
11
11
{
12
12
Id = id ;
13
- MessageUtf8 = message ;
13
+ Message = message ;
14
14
}
15
15
16
16
public int Id { get ; }
17
17
18
- public byte [ ] MessageUtf8 { get ; }
18
+ public byte [ ] Message { get ; }
19
19
20
20
public int CompareTo ( object obj ) => throw new InvalidOperationException ( "The non-generic CompareTo should not be used" ) ;
21
21
22
22
// Performance critical, using culture insensitive comparison
23
- public int CompareTo ( Fortune other ) => MessageUtf8 . AsSpan ( ) . SequenceCompareTo ( other . MessageUtf8 . AsSpan ( ) ) ;
23
+ public int CompareTo ( FortuneUtf8 other ) => Message . AsSpan ( ) . SequenceCompareTo ( other . Message . AsSpan ( ) ) ;
24
24
}
25
25
}
Original file line number Diff line number Diff line change @@ -233,10 +233,10 @@ public async Task<World[]> LoadMultipleUpdatesRows(int count)
233
233
return results ;
234
234
}
235
235
236
- public async Task < List < Fortune > > LoadFortunesRows ( )
236
+ public async Task < List < FortuneUtf8 > > LoadFortunesRows ( )
237
237
{
238
238
// Benchmark requirements explicitly prohibit pre-initializing the list size
239
- var result = new List < Fortune > ( ) ;
239
+ var result = new List < FortuneUtf8 > ( ) ;
240
240
241
241
using ( var db = CreateConnection ( ) )
242
242
{
@@ -247,15 +247,15 @@ public async Task<List<Fortune>> LoadFortunesRows()
247
247
248
248
while ( await rdr . ReadAsync ( ) )
249
249
{
250
- result . Add ( new Fortune
250
+ result . Add ( new FortuneUtf8
251
251
(
252
252
id : rdr . GetInt32 ( 0 ) ,
253
253
message : rdr . GetFieldValue < byte [ ] > ( 1 )
254
254
) ) ;
255
255
}
256
256
}
257
257
258
- result . Add ( new Fortune ( id : 0 , AdditionalFortune ) ) ;
258
+ result . Add ( new FortuneUtf8 ( id : 0 , AdditionalFortune ) ) ;
259
259
result . Sort ( ) ;
260
260
261
261
return result ;
Original file line number Diff line number Diff line change 1
- @inherits RazorSlice <List <FortuneDapper >>
1
+ @inherits RazorSlice <List <FortuneUtf16 >>
2
2
<!DOCTYPE html><html ><head ><title >Fortunes</title ></head ><body ><table ><tr ><th >id</th ><th >message</th ></tr >@foreach ( var item in Model ){ <tr ><td >@item.Id </td ><td >@item.Message </td ></tr >} </table ></body ></html >
Original file line number Diff line number Diff line change 1
- @inherits RazorSlice <List <Fortune >>
2
- <!DOCTYPE html><html ><head ><title >Fortunes</title ></head ><body ><table ><tr ><th >id</th ><th >message</th ></tr >@foreach ( var item in Model ){ <tr ><td >@item.Id </td ><td >@item.MessageUtf8 </td ></tr >} </table ></body ></html >
1
+ @inherits RazorSlice <List <FortuneUtf8 >>
2
+ <!DOCTYPE html><html ><head ><title >Fortunes</title ></head ><body ><table ><tr ><th >id</th ><th >message</th ></tr >@foreach ( var item in Model ){ <tr ><td >@item.Id </td ><td >@item.Message </td ></tr >} </table ></body ></html >
You can’t perform that action at this time.
0 commit comments