Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Preparing for the System Design Interviews V2 - End to End, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:04:42
    What is a system design interview and why it is important?
  2. Урок 2. 00:33:16
    Basics for System Design Interviews ( Upgraded Video Coming Soon )
  3. Урок 3. 00:07:01
    Sample Application - Code Walkthrough (Demo) - NEW
  4. Урок 4. 00:05:42
    CAP Theorem - (New Video)
  5. Урок 5. 00:24:44
    Handling your DATA
  6. Урок 6. 00:07:40
    Transaction on Data
  7. Урок 7. 00:13:59
    What goes in the Middleware layer ?
  8. Урок 8. 00:08:23
    Building the middleware layer using MicroServices.
  9. Урок 9. 00:07:27
    Building the front end layer (UI)
  10. Урок 10. 00:01:19
    Introduction
  11. Урок 11. 00:02:39
    Where can a load balancer be placed in a system ?
  12. Урок 12. 00:08:01
    Types of Load balancers
  13. Урок 13. 00:05:31
    Load Balancing Strategies and Load Types
  14. Урок 14. 00:00:36
    Introduction
  15. Урок 15. 00:02:08
    Caching
  16. Урок 16. 00:06:55
    Types of Cache
  17. Урок 17. 00:02:44
    Updating data in cache
  18. Урок 18. 00:03:06
    Cache Eviction
  19. Урок 19. 00:00:33
    Introduction
  20. Урок 20. 00:03:43
    Feed Application Using Cache Servers
  21. Урок 21. 00:06:19
    Architecture and Flow of the Sample Application
  22. Урок 22. 00:07:01
    Demo
  23. Урок 23. 00:00:20
    Introduction
  24. Урок 24. 00:02:40
    What is a CDN ?
  25. Урок 25. 00:02:23
    Advantages and Disadvantages of CDNs
  26. Урок 26. 00:26:16
    Design a scalable ecommerce website like Amazon or Walmart.com ?
  27. Урок 27. 00:00:54
    Introduction
  28. Урок 28. 00:03:33
    What's a LRU Cache ?
  29. Урок 29. 00:05:50
    Building an LRU Cache
  30. Урок 30. 00:02:44
    LRU Cache Code (Java)
  31. Урок 31. 00:02:36
    LRU Cache Code Continued (Java)
  32. Урок 32. 00:07:36
    Efficient LRU Cache
  33. Урок 33. 00:25:01
    Efficient LRU Cache Code (Java)
  34. Урок 34. 00:11:36
    Distributed Cache Design - Part 1
  35. Урок 35. 00:07:11
    Distributed Cache Design - Part 2
  36. Урок 36. 00:04:05
    Distributed Cache Design - Part 3
  37. Урок 37. 00:00:32
    Introduction - Problem Description
  38. Урок 38. 00:02:33
    Digging deep into the problem
  39. Урок 39. 00:02:42
    Functional Requirements
  40. Урок 40. 00:00:21
    Non functional Requirements
  41. Урок 41. 00:01:25
    Approaching the problem with the simplest design first
  42. Урок 42. 00:01:44
    Going deeper into the simpler approaches
  43. Урок 43. 00:01:39
    Problems with the Simple Approach
  44. Урок 44. 00:01:06
    Approaches for a distributed system
  45. Урок 45. 00:01:04
    Approach 1 (also its good and bad points)
  46. Урок 46. 00:01:10
    Approach 1 continued
  47. Урок 47. 00:01:30
    Approach 2 (good and bad points)
  48. Урок 48. 00:02:19
    Approach 2 continued
  49. Урок 49. 00:05:21
    Approach 3 - final approach
  50. Урок 50. 00:00:25
    Introduction - Problem Description
  51. Урок 51. 00:02:02
    Understanding the Problem
  52. Урок 52. 00:02:36
    Why relational db's are not suited for this kind of problem ?
  53. Урок 53. 00:00:57
    What is a recommendation system and its requirements.
  54. Урок 54. 00:04:22
    Requirements
  55. Урок 55. 00:02:59
    HLD
  56. Урок 56. 00:06:09
    Data Ingestion Layer
  57. Урок 57. 00:01:20
    Analytics Engine and Approach 1
  58. Урок 58. 00:09:30
    Market Basket Analysis - Apriori Algorithm
  59. Урок 59. 00:04:27
    Implementation and Code
  60. Урок 60. 00:00:45
    Problem with this Approach
  61. Урок 61. 00:01:31
    Important point for this case study
  62. Урок 62. 00:05:00
    Content Based recommendation
  63. Урок 63. 00:06:08
    Content Based recommendation - implementation
  64. Урок 64. 00:01:33
    Collaborative Filtering
  65. Урок 65. 00:01:24
    Collaborative filtering approach in short
  66. Урок 66. 00:00:41
    Introduction
  67. Урок 67. 00:03:26
    Requirements and Assumptions
  68. Урок 68. 00:01:49
    Back of Envelope Calculations
  69. Урок 69. 00:08:25
    HLD
  70. Урок 70. 00:00:55
    Sample Data
  71. Урок 71. 00:01:28
    API Design
  72. Урок 72. 00:01:29
    Building the Rest services of the API
  73. Урок 73. 00:03:53
    Low Level Design
  74. Урок 74. 00:02:32
    More on low level design
  75. Урок 75. 00:05:09
    Storing the TRIE in Cache
  76. Урок 76. 00:03:41
    Storing words using big data technologies and finding the word frequencies
  77. Урок 77. 00:04:17
    Building the TRIE
  78. Урок 78. 00:01:49
    Disadvantages of this Approach