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