タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

TypeScriptとarticleとcompilerに関するefclのブックマーク (1)

  • Why does tsgo use so much memory?

    5/27/2026 · 2,595 views Why does tsgo use so much memory? If you run tsgo on decently sized Typescript project, it’s not uncommon to see it using gigabytes of memory. Why is that? The short answer is: when multi-threading, tsgo makes a type checker per thread each type checker has its own state (types, symbols, etc.) this state is not shared as synchronizing it between threads is costly so each ty

    efcl
    efcl 2026/05/30
    TypeScriptのGo移植版コンパイラ(tsgo)がメモリを多く使う理由についての解説記事。 マルチスレッド実行時、スレッドごとに独立した型チェッカーを作成し、型やシンボルを共有しないため、スレッドごとに同じ型がメモリ
  • 1