Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code examples for perf-oriented API suggest inefficient code #45559

Open
Alex-Sob opened this issue Mar 28, 2025 · 0 comments
Open

Code examples for perf-oriented API suggest inefficient code #45559

Alex-Sob opened this issue Mar 28, 2025 · 0 comments

Comments

@Alex-Sob
Copy link

Alex-Sob commented Mar 28, 2025

Type of issue

Other (describe below)

Description

The first code example under Utf8Parser and Utf8Formatter contains this code in the overridden Write method:

Span<byte> utf8Date = new byte[29];

Allocating a new byte array every time a DateTime value is written seems to be a considerable overhead. Allocating byte array on the stack instead would be more efficient.

Also, that section begins with the statement "if your input DateTime or DateTimeOffset text representations are compliant with one of the "R", "l", "O", or "G" standard date and time format strings". It seems like this is not a limitation and the value can be serialized using any supported format. For example, here's how DateTime value can be written in "s" format:

public override void Write(Utf8JsonWriter writer, DateTimeOffset value, JsonSerializerOptions options)
{
    Span<char> span = stackalloc char[32];
    value.TryFormat(span, out var count, "s");
    writer.WriteStringValue(span[..count]);
}

Page URL

https://learn.microsoft.com/en-us/dotnet/standard/datetime/system-text-json-support#-and-

Content source URL

https://github.com/dotnet/docs/blob/main/docs/standard/datetime/system-text-json-support.md

Document Version Independent Id

77358796-3ee2-9b86-7e0a-92c60ebc371a

Platform Id

45e1d7c2-9630-1091-5921-5194b2bfef72

Article author

@layomia

Metadata

  • ID: eb41b02f-8fe9-44a1-544f-b6016f1ff4b3
  • PlatformId: 45e1d7c2-9630-1091-5921-5194b2bfef72
  • Service: dotnet-fundamentals

Related Issues

@dotnet-policy-service dotnet-policy-service bot added the ⌚ Not Triaged Not triaged label Mar 28, 2025
@Alex-Sob Alex-Sob changed the title Code examples suggest inefficient code Code examples for perf-oriented API suggest inefficient code Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant