Murder is a pixel art ECS game engine in C#

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • murder

    Murder is a pixel art ECS game engine. (by isadorasophia)

  • .NET Runtime

    .NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.

  • In .NET, GC is triggered when a user thread runs out of memory in an allocation budget and needs more, similar to what you described [0].

    Generally speaking, indefinitely preventing GC from running is not possible (you always end up putting data on the heap) therefore an optimal strategy is similar to any other language - limiting allocations and reusing memory through object and array pooling. This will ensure that GC pauses are as infrequent and as short as possible. It's important to note that if there is sufficient allocation budget - the GC will not run.

    This way, in a well written code the GC may only ever trigger every few hundred frames and only take a millisecond to run. In fact, OSU! has been able to get consistently good frame times even back on .NET Framework.

    [0] https://github.com/dotnet/runtime/blob/main/docs/design/core...

    [1] https://maoni0.medium.com/dynamically-adapting-to-applicatio...

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • related_post_gen

    Data Processing benchmark featuring Rust, Go, Swift, Zig, Julia etc.

  • [2] https://github.com/jinyus/related_post_gen#multicore-results

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts