Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Python Memory Management and Tips Course, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:04
    Welcome
  2. Урок 2. 00:00:58
    Why care about memory?
  3. Урок 3. 00:00:46
    Smaller and faster
  4. Урок 4. 00:02:57
    Topics covered
  5. Урок 5. 00:00:42
    Student expectations
  6. Урок 6. 00:00:27
    Meet your instructor
  7. Урок 7. 00:02:52
    You'll need Python 3
  8. Урок 8. 00:02:06
    Our code editor
  9. Урок 9. 00:01:00
    Git the source
  10. Урок 10. 00:01:41
    Python roughly equals CPython
  11. Урок 11. 00:02:58
    Let's talk pointers
  12. Урок 12. 00:01:33
    Passing values in C
  13. Урок 13. 00:03:33
    Does Python have pointers?
  14. Урок 14. 00:01:19
    Pass by value
  15. Урок 15. 00:04:06
    Red pill / blue pill
  16. Урок 16. 00:01:57
    CPython long source
  17. Урок 17. 00:01:30
    The id() function
  18. Урок 18. 00:03:15
    Loading the sample code
  19. Урок 19. 00:07:48
    The size of objects
  20. Урок 20. 00:03:47
    The *real* size of objects
  21. Урок 21. 00:01:08
    Concept: Flyweight design pattern
  22. Урок 22. 00:04:48
    Flyweight numbers in CPython
  23. Урок 23. 00:00:46
    CPython source book
  24. Урок 24. 00:01:02
    Allocation introduction
  25. Урок 25. 00:04:00
    Allocation in action
  26. Урок 26. 00:01:52
    Big objects may actually be many small ones
  27. Урок 27. 00:02:14
    Small object allocation introduction
  28. Урок 28. 00:02:18
    Allocation blocks
  29. Урок 29. 00:01:06
    Allocation pools
  30. Урок 30. 00:01:19
    Pools in the CPython source
  31. Урок 31. 00:00:54
    Allocation arenas
  32. Урок 32. 00:05:12
    Allocator stats
  33. Урок 33. 00:03:00
    Ref counting in source
  34. Урок 34. 00:09:03
    Reference counting
  35. Урок 35. 00:03:37
    When reference counting breaks
  36. Урок 36. 00:05:21
    GC in action
  37. Урок 37. 00:03:56
    GC without containers?
  38. Урок 38. 00:02:43
    Pythons generational garbage collector
  39. Урок 39. 00:04:43
    When does the GC run?
  40. Урок 40. 00:06:26
    Do you need the GC?
  41. Урок 41. 00:03:40
    Ref-counting and the GIL
  42. Урок 42. 00:01:41
    Data struct chapter intro
  43. Урок 43. 00:00:54
    What we arent covering
  44. Урок 44. 00:01:13
    Disabling the gc revisited
  45. Урок 45. 00:06:07
    Data with cycles
  46. Урок 46. 00:02:17
    Cycle busting part 1
  47. Урок 47. 00:06:09
    Cycle busting with friend map
  48. Урок 48. 00:07:38
    checking friends in the friend map
  49. Урок 49. 00:01:28
    Different container types
  50. Урок 50. 00:04:48
    Container sizes, starter data
  51. Урок 51. 00:01:55
    Container sizes, lists
  52. Урок 52. 00:03:48
    Demo: Container sizes, classes
  53. Урок 53. 00:03:09
    Container sizes, arrays
  54. Урок 54. 00:02:30
    Container sizes, Pandas
  55. Урок 55. 00:02:02
    Container sizes, NumPy
  56. Урок 56. 00:02:01
    Monitoring memory usages for current process
  57. Урок 57. 00:00:38
    Function and memory
  58. Урок 58. 00:02:52
    Functions clinging to memory
  59. Урок 59. 00:02:54
    Implementing the pipeline functions
  60. Урок 60. 00:04:09
    Tracking memory usage
  61. Урок 61. 00:05:20
    Dropping intermediate data
  62. Урок 62. 00:01:32
    Concept: Dropping intermediate data
  63. Урок 63. 00:10:31
    Converting the pipeline to generators
  64. Урок 64. 00:01:48
    Concept: Generators
  65. Урок 65. 00:05:58
    Useful closures
  66. Урок 66. 00:04:31
    Counting with closures
  67. Урок 67. 00:01:12
    Concept: Closure state
  68. Урок 68. 00:00:49
    Classes and memory introduction
  69. Урок 69. 00:06:51
    Plain ol' fields
  70. Урок 70. 00:01:47
    Is it a crowd?
  71. Урок 71. 00:02:06
    Testing crowd sizes
  72. Урок 72. 00:04:04
    Delayed fields with properties
  73. Урок 73. 00:01:02
    Concept: Properties, a memory-oriented perspective
  74. Урок 74. 00:07:54
    Where do classes store memory?
  75. Урок 75. 00:01:28
    Concept: Class dictionaries
  76. Урок 76. 00:05:28
    People with slots
  77. Урок 77. 00:01:32
    Concept: Slots
  78. Урок 78. 00:03:35
    Slots are faster, not just smaller
  79. Урок 79. 00:01:22
    Profiling introduction
  80. Урок 80. 00:02:57
    Profiling in PyCharm
  81. Урок 81. 00:01:33
    A memory profiler
  82. Урок 82. 00:02:58
    Line level memory profiling
  83. Урок 83. 00:00:35
    Concept: Line by line memory with memory_profiler
  84. Урок 84. 00:03:05
    Graphing memory usage over time
  85. Урок 85. 00:00:30
    Concept: Graphing memory usage over time
  86. Урок 86. 00:01:27
    A data science-focused profiler
  87. Урок 87. 00:02:48
    Profiling with Fil
  88. Урок 88. 00:00:54
    You crossed the finish line
  89. Урок 89. 00:01:06
    Take the red pill (AKA pointers)
  90. Урок 90. 00:01:32
    Allocating memory
  91. Урок 91. 00:01:17
    Reference counting
  92. Урок 92. 00:01:19
    Garbage collection
  93. Урок 93. 00:00:45
    Container types
  94. Урок 94. 00:01:45
    Memory and functions
  95. Урок 95. 00:02:40
    Classes
  96. Урок 96. 00:01:13
    Profiling
  97. Урок 97. 00:00:27
    Bye and thanks