タグ

java8とmemoryに関するyassのブックマーク (2)

  • False Sharing

    Normally, Java programmers are not too concerned about the hardware on which their beautiful software runs as long as provides loads of memory. Most of the time this is a good thing as software should solve a business problem rather than satisfying a machine. The JVM does a decent job hiding the underlying platform but as we know, abstractions are leaky. Sometimes we have to peek under hood, espec

    False Sharing
    yass
    yass 2014/07/13
    " @Contended has been introduced to Java 8 with JEP-142. With this annotation, fields can be declared as contended. The current OpenJDK implementation will then pad the field appropriately, inserting a 128 byte padding after each annotated field.  "
  • Java 8でPermGenのOutOfMemoryError問題は解決されるのか?

    あなたにとって重要なトピックや同僚の最新情報を入手しましょう最新の洞察とトレンドに関する最新情報を即座に受け取りましょう。 継続的な学習のために、無料のリソースに手軽にアクセスしましょうミニブック、トランスクリプト付き動画、およびトレーニング教材。 記事を保存して、いつでも読むことができます記事をブックマークして、準備ができたらいつでも読めます。

    Java 8でPermGenのOutOfMemoryError問題は解決されるのか?
    yass
    yass 2013/03/14
    "全体的に今回の変更は期待外れだ。ほとんどの面から見て,単なる名前の変更に過ぎない。/ クラスローダのリークが発生するのは以前と同じなのだ。"
  • 1