SlideShare una empresa de Scribd logo
1 de 30
Summer School 2012




Resources
& Memory
      Yuriy Guts
     R&D Engineer

  yuriy.guts@eleks.com
Summer School 2012




   .NET uses managed storage…
So why do I need do know this stuff?
Summer School 2012




Process memory layout (typical)
Summer School 2012




Storage management is hard
Summer School 2012




  Manual             vs.               Automatic
• Fast                           • Easy to program
• Precise                        • Keeps you focused
• Deterministic                  • Heuristically optimized

       BUT                                  BUT

• Error-prone                    • Unpredictable
• Distracting                    • Causes noticeable delays
• Hard to debug                  • Sometimes leaks as well
Summer School 2012




Common GC strategies

      Mark & Sweep

       Stop & Copy

    Reference Counting
Summer School 2012




Mark & Sweep
Summer School 2012




                 Advantages
• Keeps objects in their places
• Will work well with pointer arithmetics
Summer School 2012




               Disadvantages
• Can cause heap fragmentation
• Must process every object in the heap
• May require O(n) space to execute
Summer School 2012




Stop & Copy
Summer School 2012




                 Advantages
• Fast allocation and collection
• Operates only on live objects
• Does not cause fragmentation
Summer School 2012




              Disadvantages
• May require some time and space to rearrange
  pointers on live objects
• Unsuitable for C / C++
Summer School 2012




               Reference Counting
• Remember the number of references to each object
• Adjust it accordingly on every assignment
Summer School 2012




                Advantages
• Easy to implement
• Collects garbage incrementally without
  significant delays
Summer School 2012




              Disadvantages
• Unable to clean up circular structures
• Requires atomic operations (expensive)
• Slows down assignment operations
Summer School 2012




            ??      ?
Which approach does .NET use?
Summer School 2012




            .NET CLR Managed Heap
                                                             NextObjPtr




                                                                          Managed
 Object A   Object B   Object C    Object D   Object E   Object F
                                                                           heap



• Items are allocated consecutively.

• The only allocation overhead is about incrementing the pointer!

• When objects are destroyed, the managed heap gets automatically
  condensed (except the Large Object Heap!).
Summer School 2012




       CLR Object Lifecycle
Allocation (IL newobj)

   Construction (.ctor)

      Member usage (your code)

         Cleanup (finalizer)

            Deallocation (GC)
Object construction algorithm
                    Calculate the number of bytes required.



                     Append two system fields of type int.
           Type pointer                                SyncBlockIndex



 Make sure there is enough free storage space available in the managed heap.




  Fill the block with zero bytes, call the constructor (pass NextObjPtr as this).




     Increase NextObjPtr and return the address of newly created object.
Summer School 2012




Garbage Collection Triggers

1   • System is running low on memory




2   • A threshold of acceptable memory usage
      has been exceeded on the managed heap.



3   • GC.Collect() has been called
Summer School 2012




 Garbage Collection Algorithm
        Suspend all threads except the one that triggered GC

 Thread 1 [GC’ing]        Thread 2 [suspended]        Thread 3 [suspended]




                 Define application roots (live objects)

Stack roots          GC handles       Static objects       CPU registers



                            Mark & Sweep



               Heap Defragmentation (relocate objects).
Summer School 2012




GC Generations
Summer School 2012




 Deterministic Cleanup: IDisposable
[ComVisibleAttribute(true)]
public interface IDisposable
{
  void Dispose();
}



Dispose() — Performs application-defined tasks associated with freeing, releasing,
or resetting resources.
Summer School 2012




                ‘using’: syntactic sugar
using (Bitmap bitmap = new Bitmap(100, 100))
{
  Console.WriteLine(bitmap.Height);
}


                               …is equivalent to:
Bitmap bitmap = null;
try
{
  bitmap = new Bitmap(100, 100);
  Console.WriteLine(bitmap.Height);
}
finally
{
  if (bitmap != null)
  {
    (IDisposable)bitmap.Dispose();
  }
}
Summer School 2012




    Deterministic Cleanup: Finalization
Do NOT confuse with C++ destructor!!!

class UnmanagedResourceWrapper
{
  // Declare and use an unmanaged resource...

    ~UnmanagedResourceWrapper()
    {
      // Clean up...
    }
}
Summer School 2012
Summer School 2012




              Some Best Practices

1   • DON’T use IDisposable and/or Finalize unless you really have to (see below).
    • DON’T use Finalize if you do not have unmanaged resources (such as handles).



    • Use IDisposable if your type works with managed resources or contains an
2     IDisposable member.
    • Make sure you call base.Dispose() if base class is IDisposable.




3   • Use IDisposable AND Finalize if your type works with unmanaged resources.
    • Finalize() should always release the resource and not throw any exceptions.
Summer School 2012




 GCHandle Tricks

Lifetime monitoring & control


Pinning objects in memory


Weak references
Summer School 2012




   ??      ?
  Q&A
yuriy.guts@eleks.com
Summer School 2012




Thank you!

Más contenido relacionado

Destacado (7)

Cryptography
CryptographyCryptography
Cryptography
 
Encryption
EncryptionEncryption
Encryption
 
Speech synthesis technology
Speech synthesis technologySpeech synthesis technology
Speech synthesis technology
 
Introduction to computer hardware
Introduction to computer hardwareIntroduction to computer hardware
Introduction to computer hardware
 
Computer hardware component. ppt
Computer hardware component. pptComputer hardware component. ppt
Computer hardware component. ppt
 
Encryption presentation final
Encryption presentation finalEncryption presentation final
Encryption presentation final
 
Data communication and network Chapter -1
Data communication and network Chapter -1Data communication and network Chapter -1
Data communication and network Chapter -1
 

Similar a ELEKS Summer School 2012: .NET 04 - Resources and Memory

Advanced Memory Management on iOS and Android - Mark Probst and Rodrigo Kumpera
Advanced Memory Management on iOS and Android - Mark Probst and Rodrigo KumperaAdvanced Memory Management on iOS and Android - Mark Probst and Rodrigo Kumpera
Advanced Memory Management on iOS and Android - Mark Probst and Rodrigo Kumpera
Xamarin
 
angularjsmeetup-150303044616-conversion-gate01
angularjsmeetup-150303044616-conversion-gate01angularjsmeetup-150303044616-conversion-gate01
angularjsmeetup-150303044616-conversion-gate01
Teo E
 
Is2215 lecture5 lecturer_g_cand_classlibraries
Is2215 lecture5 lecturer_g_cand_classlibrariesIs2215 lecture5 lecturer_g_cand_classlibraries
Is2215 lecture5 lecturer_g_cand_classlibraries
dannygriff1
 

Similar a ELEKS Summer School 2012: .NET 04 - Resources and Memory (20)

ELEKS Summer School 2012: .NET 06 - Multithreading
ELEKS Summer School 2012: .NET 06 - MultithreadingELEKS Summer School 2012: .NET 06 - Multithreading
ELEKS Summer School 2012: .NET 06 - Multithreading
 
ELEKS Summer School 2012: .NET 09 - Databases
ELEKS Summer School 2012: .NET 09 - DatabasesELEKS Summer School 2012: .NET 09 - Databases
ELEKS Summer School 2012: .NET 09 - Databases
 
Ios development
Ios developmentIos development
Ios development
 
Pitfalls of Object Oriented Programming by SONY
Pitfalls of Object Oriented Programming by SONYPitfalls of Object Oriented Programming by SONY
Pitfalls of Object Oriented Programming by SONY
 
Advanced Memory Management on iOS and Android - Mark Probst and Rodrigo Kumpera
Advanced Memory Management on iOS and Android - Mark Probst and Rodrigo KumperaAdvanced Memory Management on iOS and Android - Mark Probst and Rodrigo Kumpera
Advanced Memory Management on iOS and Android - Mark Probst and Rodrigo Kumpera
 
A Quick and Dirty D3.js Tutorial
A Quick and Dirty D3.js TutorialA Quick and Dirty D3.js Tutorial
A Quick and Dirty D3.js Tutorial
 
The Good, the Bad and the Ugly things to do with android
The Good, the Bad and the Ugly things to do with androidThe Good, the Bad and the Ugly things to do with android
The Good, the Bad and the Ugly things to do with android
 
Dojo for programmers (TXJS 2010)
Dojo for programmers (TXJS 2010)Dojo for programmers (TXJS 2010)
Dojo for programmers (TXJS 2010)
 
Web Development with Delphi and React - ITDevCon 2016
Web Development with Delphi and React - ITDevCon 2016Web Development with Delphi and React - ITDevCon 2016
Web Development with Delphi and React - ITDevCon 2016
 
Mobile Fest 2018. Алексей Лизенко. Make your project great again
Mobile Fest 2018. Алексей Лизенко. Make your project great againMobile Fest 2018. Алексей Лизенко. Make your project great again
Mobile Fest 2018. Алексей Лизенко. Make your project great again
 
Understanding memory management in xamarin forms
Understanding memory management in xamarin formsUnderstanding memory management in xamarin forms
Understanding memory management in xamarin forms
 
Nagios Conference 2012 - Nathan Vonnahme - Monitoring the User Experience
Nagios Conference 2012 - Nathan Vonnahme - Monitoring the User ExperienceNagios Conference 2012 - Nathan Vonnahme - Monitoring the User Experience
Nagios Conference 2012 - Nathan Vonnahme - Monitoring the User Experience
 
Chronicles Of Garbage Collection (GC)
Chronicles Of Garbage Collection (GC)Chronicles Of Garbage Collection (GC)
Chronicles Of Garbage Collection (GC)
 
angularjsmeetup-150303044616-conversion-gate01
angularjsmeetup-150303044616-conversion-gate01angularjsmeetup-150303044616-conversion-gate01
angularjsmeetup-150303044616-conversion-gate01
 
Angular js meetup
Angular js meetupAngular js meetup
Angular js meetup
 
A healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdfA healthy diet for your Java application Devoxx France.pdf
A healthy diet for your Java application Devoxx France.pdf
 
Building React Applications with Redux
Building React Applications with ReduxBuilding React Applications with Redux
Building React Applications with Redux
 
Is2215 lecture5 lecturer_g_cand_classlibraries
Is2215 lecture5 lecturer_g_cand_classlibrariesIs2215 lecture5 lecturer_g_cand_classlibraries
Is2215 lecture5 lecturer_g_cand_classlibraries
 
MacRuby for Fun and Profit
MacRuby for Fun and ProfitMacRuby for Fun and Profit
MacRuby for Fun and Profit
 
2CPP03 - Object Orientation Fundamentals
2CPP03 - Object Orientation Fundamentals2CPP03 - Object Orientation Fundamentals
2CPP03 - Object Orientation Fundamentals
 

Más de Yuriy Guts

A Developer Overview of Redis
A Developer Overview of RedisA Developer Overview of Redis
A Developer Overview of Redis
Yuriy Guts
 
Non-Functional Requirements
Non-Functional RequirementsNon-Functional Requirements
Non-Functional Requirements
Yuriy Guts
 
Introduction to Software Architecture
Introduction to Software ArchitectureIntroduction to Software Architecture
Introduction to Software Architecture
Yuriy Guts
 
UML for Business Analysts
UML for Business AnalystsUML for Business Analysts
UML for Business Analysts
Yuriy Guts
 
Intro to Software Engineering for non-IT Audience
Intro to Software Engineering for non-IT AudienceIntro to Software Engineering for non-IT Audience
Intro to Software Engineering for non-IT Audience
Yuriy Guts
 

Más de Yuriy Guts (17)

Target Leakage in Machine Learning (ODSC East 2020)
Target Leakage in Machine Learning (ODSC East 2020)Target Leakage in Machine Learning (ODSC East 2020)
Target Leakage in Machine Learning (ODSC East 2020)
 
Automated Machine Learning
Automated Machine LearningAutomated Machine Learning
Automated Machine Learning
 
Target Leakage in Machine Learning
Target Leakage in Machine LearningTarget Leakage in Machine Learning
Target Leakage in Machine Learning
 
Paraphrase Detection in NLP
Paraphrase Detection in NLPParaphrase Detection in NLP
Paraphrase Detection in NLP
 
UCU NLP Summer Workshops 2017 - Part 2
UCU NLP Summer Workshops 2017 - Part 2UCU NLP Summer Workshops 2017 - Part 2
UCU NLP Summer Workshops 2017 - Part 2
 
Natural Language Processing (NLP)
Natural Language Processing (NLP)Natural Language Processing (NLP)
Natural Language Processing (NLP)
 
NoSQL (ELEKS DevTalks #1 - Jan 2015)
NoSQL (ELEKS DevTalks #1 - Jan 2015)NoSQL (ELEKS DevTalks #1 - Jan 2015)
NoSQL (ELEKS DevTalks #1 - Jan 2015)
 
Experiments with Machine Learning - GDG Lviv
Experiments with Machine Learning - GDG LvivExperiments with Machine Learning - GDG Lviv
Experiments with Machine Learning - GDG Lviv
 
A Developer Overview of Redis
A Developer Overview of RedisA Developer Overview of Redis
A Developer Overview of Redis
 
[JEEConf 2015] Lessons from Building a Modern B2C System in Scala
[JEEConf 2015] Lessons from Building a Modern B2C System in Scala[JEEConf 2015] Lessons from Building a Modern B2C System in Scala
[JEEConf 2015] Lessons from Building a Modern B2C System in Scala
 
Redis for .NET Developers
Redis for .NET DevelopersRedis for .NET Developers
Redis for .NET Developers
 
Aspect-Oriented Programming (AOP) in .NET
Aspect-Oriented Programming (AOP) in .NETAspect-Oriented Programming (AOP) in .NET
Aspect-Oriented Programming (AOP) in .NET
 
Non-Functional Requirements
Non-Functional RequirementsNon-Functional Requirements
Non-Functional Requirements
 
Introduction to Software Architecture
Introduction to Software ArchitectureIntroduction to Software Architecture
Introduction to Software Architecture
 
UML for Business Analysts
UML for Business AnalystsUML for Business Analysts
UML for Business Analysts
 
Intro to Software Engineering for non-IT Audience
Intro to Software Engineering for non-IT AudienceIntro to Software Engineering for non-IT Audience
Intro to Software Engineering for non-IT Audience
 
ELEKS DevTalks #4: Amazon Web Services Crash Course
ELEKS DevTalks #4: Amazon Web Services Crash CourseELEKS DevTalks #4: Amazon Web Services Crash Course
ELEKS DevTalks #4: Amazon Web Services Crash Course
 

Último

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Último (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 

ELEKS Summer School 2012: .NET 04 - Resources and Memory

  • 1. Summer School 2012 Resources & Memory Yuriy Guts R&D Engineer yuriy.guts@eleks.com
  • 2. Summer School 2012 .NET uses managed storage… So why do I need do know this stuff?
  • 3. Summer School 2012 Process memory layout (typical)
  • 4. Summer School 2012 Storage management is hard
  • 5. Summer School 2012 Manual vs. Automatic • Fast • Easy to program • Precise • Keeps you focused • Deterministic • Heuristically optimized BUT BUT • Error-prone • Unpredictable • Distracting • Causes noticeable delays • Hard to debug • Sometimes leaks as well
  • 6. Summer School 2012 Common GC strategies Mark & Sweep Stop & Copy Reference Counting
  • 8. Summer School 2012 Advantages • Keeps objects in their places • Will work well with pointer arithmetics
  • 9. Summer School 2012 Disadvantages • Can cause heap fragmentation • Must process every object in the heap • May require O(n) space to execute
  • 11. Summer School 2012 Advantages • Fast allocation and collection • Operates only on live objects • Does not cause fragmentation
  • 12. Summer School 2012 Disadvantages • May require some time and space to rearrange pointers on live objects • Unsuitable for C / C++
  • 13. Summer School 2012 Reference Counting • Remember the number of references to each object • Adjust it accordingly on every assignment
  • 14. Summer School 2012 Advantages • Easy to implement • Collects garbage incrementally without significant delays
  • 15. Summer School 2012 Disadvantages • Unable to clean up circular structures • Requires atomic operations (expensive) • Slows down assignment operations
  • 16. Summer School 2012 ?? ? Which approach does .NET use?
  • 17. Summer School 2012 .NET CLR Managed Heap NextObjPtr Managed Object A Object B Object C Object D Object E Object F heap • Items are allocated consecutively. • The only allocation overhead is about incrementing the pointer! • When objects are destroyed, the managed heap gets automatically condensed (except the Large Object Heap!).
  • 18. Summer School 2012 CLR Object Lifecycle Allocation (IL newobj) Construction (.ctor) Member usage (your code) Cleanup (finalizer) Deallocation (GC)
  • 19. Object construction algorithm Calculate the number of bytes required. Append two system fields of type int. Type pointer SyncBlockIndex Make sure there is enough free storage space available in the managed heap. Fill the block with zero bytes, call the constructor (pass NextObjPtr as this). Increase NextObjPtr and return the address of newly created object.
  • 20. Summer School 2012 Garbage Collection Triggers 1 • System is running low on memory 2 • A threshold of acceptable memory usage has been exceeded on the managed heap. 3 • GC.Collect() has been called
  • 21. Summer School 2012 Garbage Collection Algorithm Suspend all threads except the one that triggered GC Thread 1 [GC’ing] Thread 2 [suspended] Thread 3 [suspended] Define application roots (live objects) Stack roots GC handles Static objects CPU registers Mark & Sweep Heap Defragmentation (relocate objects).
  • 22. Summer School 2012 GC Generations
  • 23. Summer School 2012 Deterministic Cleanup: IDisposable [ComVisibleAttribute(true)] public interface IDisposable { void Dispose(); } Dispose() — Performs application-defined tasks associated with freeing, releasing, or resetting resources.
  • 24. Summer School 2012 ‘using’: syntactic sugar using (Bitmap bitmap = new Bitmap(100, 100)) { Console.WriteLine(bitmap.Height); } …is equivalent to: Bitmap bitmap = null; try { bitmap = new Bitmap(100, 100); Console.WriteLine(bitmap.Height); } finally { if (bitmap != null) { (IDisposable)bitmap.Dispose(); } }
  • 25. Summer School 2012 Deterministic Cleanup: Finalization Do NOT confuse with C++ destructor!!! class UnmanagedResourceWrapper { // Declare and use an unmanaged resource... ~UnmanagedResourceWrapper() { // Clean up... } }
  • 27. Summer School 2012 Some Best Practices 1 • DON’T use IDisposable and/or Finalize unless you really have to (see below). • DON’T use Finalize if you do not have unmanaged resources (such as handles). • Use IDisposable if your type works with managed resources or contains an 2 IDisposable member. • Make sure you call base.Dispose() if base class is IDisposable. 3 • Use IDisposable AND Finalize if your type works with unmanaged resources. • Finalize() should always release the resource and not throw any exceptions.
  • 28. Summer School 2012 GCHandle Tricks Lifetime monitoring & control Pinning objects in memory Weak references
  • 29. Summer School 2012 ?? ? Q&A yuriy.guts@eleks.com