High Performance Managed Languages • Martin Thompson • YOW! 2017

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ม.ค. 2025

ความคิดเห็น • 6

  • @GOTO-
    @GOTO-  5 หลายเดือนก่อน

    We are currently releasing older YOW! videos to serve as a valuable archive, preserving historical content. It is possible that a video is perceived as outdated. We believe it offers insightful glimpses into the past, enriching our understanding of history and development.

  • @tylerbloom4830
    @tylerbloom4830 ปีที่แล้ว +2

    The bit about polymorphism was interesting because that's how Rust does things but at compile time. Generics always get monomorphized.

  • @felixa4705
    @felixa4705 ปีที่แล้ว +3

    It is clear to me that JITs have a lot of benefits for squeezing out extra performance at runtime, but these managed runtimes seem to do poorly when it comes to short lived applications. For example, command line applications written in Java tend to be pretty clunky and slow. IMO, the benefit of a compiled language is that you get consistent performance.

    • @Not_Today_1969
      @Not_Today_1969 ปีที่แล้ว

      Java was not supposed to be used for scripting.

    • @felixa4705
      @felixa4705 ปีที่แล้ว

      And it's totally fine that it wasn't! What I'm saying is that the performance model does preclude some workloads. It has higher highs because it can do clever stuff on your program, but it doesn't work for every situation (e.g. short lived processes) and can have fragile optimization (e.g., if you have unexpected mixes of subtypes messing with your caching). I don't think it's a problem with java or C#, just something to consider.

    • @Not_Today_1969
      @Not_Today_1969 ปีที่แล้ว +1

      It's a problem with runtimes. 😊