File: Matching\FastPathTokenizerPlaintextBenchmark.cs
Web Access
Project: src\src\Http\Routing\perf\Microbenchmarks\Microsoft.AspNetCore.Routing.Microbenchmarks.csproj (Microsoft.AspNetCore.Routing.Microbenchmarks)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using BenchmarkDotNet.Attributes;
 
namespace Microsoft.AspNetCore.Routing.Matching;
 
public class FastPathTokenizerPlaintextBenchmark : FastPathTokenizerBenchmarkBase
{
    private const int MaxCount = 32;
    private static readonly string Input = "/plaintext";
 
    // This is super hardcoded implementation for comparison, we dont't expect to do better.
    [Benchmark(Baseline = true)]
    public unsafe void Baseline()
    {
        var path = Input;
        var segments = stackalloc PathSegment[MaxCount];
 
        MinimalBaseline(path, segments, MaxCount);
    }
 
    [Benchmark]
    public void Implementation()
    {
        var path = Input;
        Span<PathSegment> segments = stackalloc PathSegment[MaxCount];
 
        FastPathTokenizer.Tokenize(path, segments);
    }
}