SlideShare une entreprise Scribd logo
1  sur  62
Queue N Cache
          by Aaron Hardy at 360|Flex 2010
  view demos and code at AaronHardy.com
HELLO           my name is




  Aaron Hardy

Aaron Hardy   aaronhardy.com
Extending Flex


            Flex was written from day one to be an
            open, extensible framework…Don’t like the
            way Image behaves? Write your own Image
            tag! Get enough people doing that, and
            there’ll soon be a wealth of new and
            improved frameworks and components out
            there for everyone to choose from.

                                       - Ely Greenfield



       Aaron Hardy   aaronhardy.com
Queue
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Case Study – Studio J




        Aaron Hardy   aaronhardy.com
Test App




       Aaron Hardy   aaronhardy.com
Generic Requests




                                      View Screencast




       Aaron Hardy   aaronhardy.com
The Lunch Line




       Aaron Hardy   aaronhardy.com
Delay the Catalyst
                                           URLRequest
Loader.load()
                                              Context


URLLoader.load()                           URLRequest


                                           URLRequest
FileReference.upload()                  DataFieldName
                                            TestUpload

                                            Command
NetConnection.call()                        Responder
                                           Parameters

         Aaron Hardy   aaronhardy.com
Categorize Requests




       Aaron Hardy   aaronhardy.com
Categorize Requests




       Aaron Hardy   aaronhardy.com
Categorize Requests




       Aaron Hardy   aaronhardy.com
Priority Shifting
                                        Lunch Lady #1
                                        Lunch Lady #2


           Kit Thumbnail Requests
                                            Loader
                                          URLRequest
                                           Context




      Pattern Thumbnail Requests




         Aaron Hardy   aaronhardy.com
Priority Shifting
                                        Lunch Lady #1
           Kit Thumbnail Requests
                                        Lunch Lady #2




      Pattern Thumbnail Requests




                                            Loader
           Kit Thumbnail Requests         URLRequest
                                           Context




         Aaron Hardy   aaronhardy.com
Priority Shifting
                                        Lunch Lady #1
           Kit Thumbnail Requests
                                        Lunch Lady #2




      Pattern Thumbnail Requests




                                                    Awaiting Retry
           Kit Thumbnail Requests




         Aaron Hardy   aaronhardy.com
Requests with Priority Shifting




                                       View Screencast




        Aaron Hardy   aaronhardy.com
Queue Combinations
Separate queue for uploads?
Separate queue for AMF requests?




           Aaron Hardy   aaronhardy.com
Green Threading




               Emulating multiple threads using a single thread.




       Aaron Hardy   aaronhardy.com
Green Threading




                                 Execute
                 Frame




                                      Render

       Aaron Hardy   aaronhardy.com
Green Threading
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                       Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                       Render

       Aaron Hardy   aaronhardy.com
Green Threading
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                      Render
                                                other code
                                      Execute
                       Frame                    execution
                                      Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                       Render
                                      Execute
                       Frame
                                      Render
                                      Execute
                       Frame
                                       Render

       Aaron Hardy   aaronhardy.com
Pros N Cons of Queuing
Pros
   • Prioritizability
   • Retryability

Cons
   • Overhead
   • Complexity
   • Possible underutilization of server resources




            Aaron Hardy   aaronhardy.com
Cache
Duplicate Images




       Aaron Hardy   aaronhardy.com
Duplicate Images




       Aaron Hardy   aaronhardy.com
Duplicate Images




       Aaron Hardy   aaronhardy.com
Duplicate Images




       Aaron Hardy   aaronhardy.com
Duplicate Images




       Aaron Hardy   aaronhardy.com
Generic Loading of Duplicate Images




       Aaron Hardy   aaronhardy.com
Compressed vs. Uncompressed
1 JPG at 1200x900 = 152 KB
21 JPG x 152 KB = 3.1 MB

1 BitmapData at 1200x900 = 1,080,000 pixels * 4 bytes = 4.1 MB
21 BitmapData x 4.1 MB = 86.1 MB

BitmapData 27 times larger than JPG

(numbers are from test app and are only approximates)




               Aaron Hardy   aaronhardy.com
Generic Scrolling




                                       View Screencast




        Aaron Hardy   aaronhardy.com
The Summer of George




       Aaron Hardy   aaronhardy.com
Locality of Reference



                 Temporal Locality:
                 A phenomenon in computer science
                 that states that if a value is referenced,
                 there is a high probability it will be
                 referenced again soon.

                                               - Wikipedia




        Aaron Hardy   aaronhardy.com
Asset Sharing
                                                    adds request to queue


                                        Portable Asset
                     initiates request, provides progress, stores bitmap data




                                                                        Cache




                                       Image Renderer



       Aaron Hardy    aaronhardy.com
Asset Sharing
                                                    adds request to queue


                                        Portable Asset
                     initiates request, provides progress, stores bitmap data




                                                                        Cache




                       Image Renderer                  Image Renderer



       Aaron Hardy    aaronhardy.com
Asset Invalidation

                                       Invalidation




                                                            Cache




                      Image Renderer            Image Renderer



        Aaron Hardy   aaronhardy.com
Asset Invalidation




                                                   Cache




                      Image Renderer   Image Renderer



        Aaron Hardy   aaronhardy.com
Reference Management



                                     1.jpg

                                     2.jpg

                                     3.jpg

                                     4.jpg

                                     5.jpg

                                     6.jpg

                                     7.jpg




      Aaron Hardy   aaronhardy.com
Reference Management




              1.jpg
                                         1
                                                           c
              2.jpg                      1     c
              3.jpg                      1
              4.jpg                      1

              5.jpg                    Cache       Queue
              6.jpg

              7.jpg




      Aaron Hardy     aaronhardy.com
Reference Management




              1.jpg
                                         0                 c
              2.jpg                      1
                                               c
              3.jpg                      1
              4.jpg                      1

              5.jpg                      1

              6.jpg
                                       Cache       Queue

              7.jpg




      Aaron Hardy     aaronhardy.com
Reference Management
              1.jpg

              2.jpg

              3.jpg

              4.jpg

              5.jpg

              6.jpg                      1                 c
              7.jpg                      2
                                               c
                                         2
              1.jpg
                                         2
              2.jpg
                                         1
              3.jpg                    Cache       Queue
              4.jpg

              5.jpg

              6.jpg

              7.jpg

      Aaron Hardy     aaronhardy.com
Loading Duplicate Images with Cache




       Aaron Hardy   aaronhardy.com
Scrolling with Cache




                                       View Screencast




        Aaron Hardy   aaronhardy.com
Pros N Cons of Manual Caching
Pros
   • Sharing of bitmap data (less memory usage)
   • Faster bitmap re-access

Cons
   • Overhead
   • Complexity
   • Possible use of more memory than necessary




           Aaron Hardy   aaronhardy.com
cacheAsBitmap



    vector                              vector    vector




    display                             display   display



                                          TIME



         Aaron Hardy   aaronhardy.com
cacheAsBitmap


     vector




    bitmap                              bitmap    bitmap




    display                             display   display

                                         TIME



         Aaron Hardy   aaronhardy.com
cacheAsBitmap
Good: object is being translated
Bad: object is rotated and/or scaled




            Aaron Hardy   aaronhardy.com
cacheAsBitmap




           6 vectors                   6 bitmaps
                                     6 bitmapdata




      Aaron Hardy   aaronhardy.com
Manual cacheAsBitmap




                                               6 bitmaps
                                             1 bitmapdata
     vector                     bitmapdata




         Aaron Hardy   aaronhardy.com
cacheAsBitmap Off




       Aaron Hardy   aaronhardy.com
cacheAsBitmap On




      Aaron Hardy   aaronhardy.com
cacheAsBitmap Manual




      Aaron Hardy   aaronhardy.com
Thanks
check out demos and code at AaronHardy.com

Contenu connexe

En vedette

23 февраля 3 группа
23 февраля 3 группа23 февраля 3 группа
23 февраля 3 группаbakirova
 
полидрон гр №3
полидрон гр №3полидрон гр №3
полидрон гр №3bakirova
 
Fundamentals of cavity preparation /certified fixed orthodontic courses by I...
Fundamentals of cavity preparation  /certified fixed orthodontic courses by I...Fundamentals of cavity preparation  /certified fixed orthodontic courses by I...
Fundamentals of cavity preparation /certified fixed orthodontic courses by I...Indian dental academy
 

En vedette (6)

Emulsions
EmulsionsEmulsions
Emulsions
 
05 marcos espaciales
05 marcos espaciales05 marcos espaciales
05 marcos espaciales
 
23 февраля 3 группа
23 февраля 3 группа23 февраля 3 группа
23 февраля 3 группа
 
полидрон гр №3
полидрон гр №3полидрон гр №3
полидрон гр №3
 
Fundamentals of cavity preparation /certified fixed orthodontic courses by I...
Fundamentals of cavity preparation  /certified fixed orthodontic courses by I...Fundamentals of cavity preparation  /certified fixed orthodontic courses by I...
Fundamentals of cavity preparation /certified fixed orthodontic courses by I...
 
Influencia del marketing en la sociedad
Influencia del marketing en la sociedadInfluencia del marketing en la sociedad
Influencia del marketing en la sociedad
 

Dernier

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
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...Martijn de Jong
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 

Dernier (20)

Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
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...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 

Queue N Cache

  • 1. Queue N Cache by Aaron Hardy at 360|Flex 2010 view demos and code at AaronHardy.com
  • 2. HELLO my name is Aaron Hardy Aaron Hardy aaronhardy.com
  • 3. Extending Flex Flex was written from day one to be an open, extensible framework…Don’t like the way Image behaves? Write your own Image tag! Get enough people doing that, and there’ll soon be a wealth of new and improved frameworks and components out there for everyone to choose from. - Ely Greenfield Aaron Hardy aaronhardy.com
  • 5. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 6. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 7. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 8. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 9. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 10. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 11. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 12. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 13. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 14. Case Study – Studio J Aaron Hardy aaronhardy.com
  • 15. Test App Aaron Hardy aaronhardy.com
  • 16. Generic Requests View Screencast Aaron Hardy aaronhardy.com
  • 17. The Lunch Line Aaron Hardy aaronhardy.com
  • 18. Delay the Catalyst URLRequest Loader.load() Context URLLoader.load() URLRequest URLRequest FileReference.upload() DataFieldName TestUpload Command NetConnection.call() Responder Parameters Aaron Hardy aaronhardy.com
  • 19. Categorize Requests Aaron Hardy aaronhardy.com
  • 20. Categorize Requests Aaron Hardy aaronhardy.com
  • 21. Categorize Requests Aaron Hardy aaronhardy.com
  • 22. Priority Shifting Lunch Lady #1 Lunch Lady #2 Kit Thumbnail Requests Loader URLRequest Context Pattern Thumbnail Requests Aaron Hardy aaronhardy.com
  • 23. Priority Shifting Lunch Lady #1 Kit Thumbnail Requests Lunch Lady #2 Pattern Thumbnail Requests Loader Kit Thumbnail Requests URLRequest Context Aaron Hardy aaronhardy.com
  • 24. Priority Shifting Lunch Lady #1 Kit Thumbnail Requests Lunch Lady #2 Pattern Thumbnail Requests Awaiting Retry Kit Thumbnail Requests Aaron Hardy aaronhardy.com
  • 25. Requests with Priority Shifting View Screencast Aaron Hardy aaronhardy.com
  • 26. Queue Combinations Separate queue for uploads? Separate queue for AMF requests? Aaron Hardy aaronhardy.com
  • 27. Green Threading Emulating multiple threads using a single thread. Aaron Hardy aaronhardy.com
  • 28. Green Threading Execute Frame Render Aaron Hardy aaronhardy.com
  • 29. Green Threading Execute Frame Render Execute Frame Render Execute Frame Render Execute Frame Render Execute Frame Render Execute Frame Render Execute Frame Render Execute Frame Render Aaron Hardy aaronhardy.com
  • 30. Green Threading Execute Frame Render Execute Frame Render other code Execute Frame execution Render Execute Frame Render Execute Frame Render Execute Frame Render Execute Frame Render Execute Frame Render Aaron Hardy aaronhardy.com
  • 31. Pros N Cons of Queuing Pros • Prioritizability • Retryability Cons • Overhead • Complexity • Possible underutilization of server resources Aaron Hardy aaronhardy.com
  • 32. Cache
  • 33. Duplicate Images Aaron Hardy aaronhardy.com
  • 34. Duplicate Images Aaron Hardy aaronhardy.com
  • 35. Duplicate Images Aaron Hardy aaronhardy.com
  • 36. Duplicate Images Aaron Hardy aaronhardy.com
  • 37. Duplicate Images Aaron Hardy aaronhardy.com
  • 38. Generic Loading of Duplicate Images Aaron Hardy aaronhardy.com
  • 39. Compressed vs. Uncompressed 1 JPG at 1200x900 = 152 KB 21 JPG x 152 KB = 3.1 MB 1 BitmapData at 1200x900 = 1,080,000 pixels * 4 bytes = 4.1 MB 21 BitmapData x 4.1 MB = 86.1 MB BitmapData 27 times larger than JPG (numbers are from test app and are only approximates) Aaron Hardy aaronhardy.com
  • 40. Generic Scrolling View Screencast Aaron Hardy aaronhardy.com
  • 41. The Summer of George Aaron Hardy aaronhardy.com
  • 42. Locality of Reference Temporal Locality: A phenomenon in computer science that states that if a value is referenced, there is a high probability it will be referenced again soon. - Wikipedia Aaron Hardy aaronhardy.com
  • 43. Asset Sharing adds request to queue Portable Asset initiates request, provides progress, stores bitmap data Cache Image Renderer Aaron Hardy aaronhardy.com
  • 44. Asset Sharing adds request to queue Portable Asset initiates request, provides progress, stores bitmap data Cache Image Renderer Image Renderer Aaron Hardy aaronhardy.com
  • 45. Asset Invalidation Invalidation Cache Image Renderer Image Renderer Aaron Hardy aaronhardy.com
  • 46. Asset Invalidation Cache Image Renderer Image Renderer Aaron Hardy aaronhardy.com
  • 47. Reference Management 1.jpg 2.jpg 3.jpg 4.jpg 5.jpg 6.jpg 7.jpg Aaron Hardy aaronhardy.com
  • 48. Reference Management 1.jpg 1 c 2.jpg 1 c 3.jpg 1 4.jpg 1 5.jpg Cache Queue 6.jpg 7.jpg Aaron Hardy aaronhardy.com
  • 49. Reference Management 1.jpg 0 c 2.jpg 1 c 3.jpg 1 4.jpg 1 5.jpg 1 6.jpg Cache Queue 7.jpg Aaron Hardy aaronhardy.com
  • 50. Reference Management 1.jpg 2.jpg 3.jpg 4.jpg 5.jpg 6.jpg 1 c 7.jpg 2 c 2 1.jpg 2 2.jpg 1 3.jpg Cache Queue 4.jpg 5.jpg 6.jpg 7.jpg Aaron Hardy aaronhardy.com
  • 51. Loading Duplicate Images with Cache Aaron Hardy aaronhardy.com
  • 52. Scrolling with Cache View Screencast Aaron Hardy aaronhardy.com
  • 53. Pros N Cons of Manual Caching Pros • Sharing of bitmap data (less memory usage) • Faster bitmap re-access Cons • Overhead • Complexity • Possible use of more memory than necessary Aaron Hardy aaronhardy.com
  • 54. cacheAsBitmap vector vector vector display display display TIME Aaron Hardy aaronhardy.com
  • 55. cacheAsBitmap vector bitmap bitmap bitmap display display display TIME Aaron Hardy aaronhardy.com
  • 56. cacheAsBitmap Good: object is being translated Bad: object is rotated and/or scaled Aaron Hardy aaronhardy.com
  • 57. cacheAsBitmap 6 vectors 6 bitmaps 6 bitmapdata Aaron Hardy aaronhardy.com
  • 58. Manual cacheAsBitmap 6 bitmaps 1 bitmapdata vector bitmapdata Aaron Hardy aaronhardy.com
  • 59. cacheAsBitmap Off Aaron Hardy aaronhardy.com
  • 60. cacheAsBitmap On Aaron Hardy aaronhardy.com
  • 61. cacheAsBitmap Manual Aaron Hardy aaronhardy.com
  • 62. Thanks check out demos and code at AaronHardy.com