1. Урок 1. 00:02:08
    Introduction
  2. Урок 2. 00:05:37
    What is MongoDB?
  3. Урок 3. 00:02:56
    The Key MongoDB Characteristics (and how they differ from SQL Databases)
  4. Урок 4. 00:04:20
    Understanding the MongoDB Ecosystem
  5. Урок 5. 00:16:53
    General Setup Instructions & Installing MongoDB on macOS
  6. Урок 6. 00:08:11
    Installing MongoDB on Windows
  7. Урок 7. 00:06:00
    Installing the MongoDB Shell
  8. Урок 8. 00:05:38
    Time To Get Started!
  9. Урок 9. 00:03:30
    Shell vs Drivers
  10. Урок 10. 00:02:59
    MongoDB + Clients: The Big Picture
  11. Урок 11. 00:04:39
    Course Outline
  12. Урок 12. 00:02:31
    How To Get The Most Out Of The Course
  13. Урок 13. 00:01:31
    Module Introduction
  14. Урок 14. 00:03:48
    Understanding Databases, Collections & Documents
  15. Урок 15. 00:02:41
    The Shell & MongoDB Drivers for Different Languages
  16. Урок 16. 00:03:17
    Creating Databases & Collections
  17. Урок 17. 00:04:06
    Understanding JSON Data
  18. Урок 18. 00:05:24
    Comparing JSON & BSON
  19. Урок 19. 00:05:38
    Create, Read, Update, Delete (CRUD) & MongoDB
  20. Урок 20. 00:07:48
    Finding, Inserting, Deleting & Updating Elements
  21. Урок 21. 00:01:49
    Understanding "insertMany()"
  22. Урок 22. 00:03:56
    Diving Deeper Into Finding Data
  23. Урок 23. 00:04:42
    "update" vs "updateMany()"
  24. Урок 24. 00:07:31
    Understanding "find()" & the Cursor Object
  25. Урок 25. 00:03:39
    Understanding Projection
  26. Урок 26. 00:01:57
    Embedded Documents & Arrays - The Theory
  27. Урок 27. 00:02:29
    Working with Embedded Documents
  28. Урок 28. 00:01:44
    Working with Arrays
  29. Урок 29. 00:04:40
    Accessing Structured Data
  30. Урок 30. 00:02:48
    Wrap Up
  31. Урок 31. 00:02:13
    Module Introduction
  32. Урок 32. 00:03:58
    Why Do We Use Schemas?
  33. Урок 33. 00:07:44
    Structuring Documents
  34. Урок 34. 00:06:24
    Data Types - An Overview
  35. Урок 35. 00:12:16
    Data Types in Action
  36. Урок 36. 00:05:08
    How to Derive your Data Structure - Requirements
  37. Урок 37. 00:02:59
    Understanding Relations
  38. Урок 38. 00:06:21
    One To One Relations - Embedded
  39. Урок 39. 00:04:55
    One To One - Using References
  40. Урок 40. 00:05:08
    One To Many - Embedded
  41. Урок 41. 00:04:05
    One To Many - Using References
  42. Урок 42. 00:07:18
    Many To Many - Embedded
  43. Урок 43. 00:05:26
    Many To Many - Using References
  44. Урок 44. 00:02:19
    Summarizing Relations
  45. Урок 45. 00:04:37
    Using "lookUp()" for Merging Reference Relations
  46. Урок 46. 00:06:57
    Planning the Example Exercise
  47. Урок 47. 00:04:17
    Implementing the Example Exercise
  48. Урок 48. 00:02:58
    Understanding Schema Validation
  49. Урок 49. 00:09:08
    Adding Collection Document Validation
  50. Урок 50. 00:03:44
    Changing the Validation Action
  51. Урок 51. 00:04:09
    Wrap Up
  52. Урок 52. 00:01:02
    Module Introduction
  53. Урок 53. 00:02:16
    Finding Available Options
  54. Урок 54. 00:04:42
    Setting "dbpath" & "logpath"
  55. Урок 55. 00:02:01
    Exploring the MongoDB Options
  56. Урок 56. 00:03:10
    MongoDB as a Background Service
  57. Урок 57. 00:03:03
    Using a Config File
  58. Урок 58. 00:04:14
    Shell Options & Help
  59. Урок 59. 00:00:51
    Module Introduction
  60. Урок 60. 00:05:51
    Exploring the MongoDB Compass
  61. Урок 61. 00:01:13
    Module Introduction
  62. Урок 62. 00:01:48
    Creating Documents - An Overview
  63. Урок 63. 00:06:11
    Understanding "insert()" Methods
  64. Урок 64. 00:07:48
    Working with Ordered Inserts
  65. Урок 65. 00:05:45
    Understanding the "writeConcern"
  66. Урок 66. 00:04:10
    The "writeConcern" in Practice
  67. Урок 67. 00:02:40
    What is Atomicity?
  68. Урок 68. 00:03:38
    Importing Data
  69. Урок 69. 00:02:39
    Wrap Up
  70. Урок 70. 00:01:41
    Module Introduction
  71. Урок 71. 00:02:55
    Methods, Filters & Operators
  72. Урок 72. 00:03:03
    Operators - An Overview
  73. Урок 73. 00:01:17
    Query Selectors & Projection Operators
  74. Урок 74. 00:04:33
    Understanding "findOne()" & "find()"
  75. Урок 75. 00:05:21
    Working with Comparison Operators
  76. Урок 76. 00:04:53
    Querying Embedded Fields & Arrays
  77. Урок 77. 00:02:38
    Understanding "$in" and "$nin"
  78. Урок 78. 00:05:32
    "$or" and "$nor"
  79. Урок 79. 00:05:05
    Understanding the "$and" Operator
  80. Урок 80. 00:01:36
    Using "$not"
  81. Урок 81. 00:05:31
    Diving Into Element Operators
  82. Урок 82. 00:02:53
    Working with "$type"
  83. Урок 83. 00:03:24
    Understanding Evaluation Operators - "$regex"
  84. Урок 84. 00:09:38
    Understanding Evaluation Operators - "$expr"
  85. Урок 85. 00:04:10
    Diving Deeper Into Querying Arrays
  86. Урок 86. 00:02:10
    Using Array Query Selectors - "$size"
  87. Урок 87. 00:02:13
    Using Array Query Selectors - "$all"
  88. Урок 88. 00:04:53
    Using Array Query Selectors - "$elemMatch"
  89. Урок 89. 00:02:49
    Understanding Cursors
  90. Урок 90. 00:06:03
    Applying Cursors
  91. Урок 91. 00:03:10
    Sorting Cursor Results
  92. Урок 92. 00:03:32
    Skipping & Limiting Cursor Results
  93. Урок 93. 00:04:03
    Using Projection to Shape our Results
  94. Урок 94. 00:05:13
    Using Projection in Arrays
  95. Урок 95. 00:03:06
    Understanding "$slice"
  96. Урок 96. 00:01:02
    Module Introduction
  97. Урок 97. 00:07:53
    Updating Fields with "updateOne()", "updateMany()" and "$set"
  98. Урок 98. 00:01:41
    Updating Multiple Fields with "$set"
  99. Урок 99. 00:03:34
    Incrementing & Decrementing Values
  100. Урок 100. 00:03:16
    Using "$min", "$max" and "$mul"
  101. Урок 101. 00:02:05
    Getting Rid of Fields
  102. Урок 102. 00:01:21
    Renaming Fields
  103. Урок 103. 00:04:02
    Understanding "upsert()"
  104. Урок 104. 00:06:57
    Updating Matched Array Elements
  105. Урок 105. 00:06:28
    Updating All Array Elements
  106. Урок 106. 00:05:36
    Finding & Updating Specific Fields
  107. Урок 107. 00:04:47
    Adding Elements to Arrays
  108. Урок 108. 00:02:35
    Removing Elements from Arrays
  109. Урок 109. 00:01:19
    Understanding "$addToSet"
  110. Урок 110. 00:01:40
    Wrap Up
  111. Урок 111. 00:00:32
    Module Introduction
  112. Урок 112. 00:04:09
    Understanding "deleteOne()" & "deleteMany()"
  113. Урок 113. 00:02:01
    Deleting All Entries in a Collection
  114. Урок 114. 00:01:21
    Module Introduction
  115. Урок 115. 00:04:19
    What Are Indexes & Why Do We Use Them?
  116. Урок 116. 00:08:07
    Adding a Single Field Index
  117. Урок 117. 00:02:52
    Understanding Index Restrictions
  118. Урок 118. 00:07:15
    Creating Compound Indexes
  119. Урок 119. 00:02:26
    Using Indexes for Sorting
  120. Урок 120. 00:01:00
    Understanding the Default Index
  121. Урок 121. 00:02:29
    Configuring Indexes
  122. Урок 122. 00:06:08
    Understanding Partial Filters
  123. Урок 123. 00:03:38
    Applying the Partial Index
  124. Урок 124. 00:03:57
    Understanding the Time-To-Live (TTL) Index
  125. Урок 125. 00:02:11
    Query Diagnosis & Query Planning
  126. Урок 126. 00:03:35
    Understanding Covered Queries
  127. Урок 127. 00:07:38
    How MongoDB Rejects a Plan
  128. Урок 128. 00:08:16
    Using Multi-Key Indexes
  129. Урок 129. 00:06:10
    Understanding Text Indexes
  130. Урок 130. 00:02:22
    Text Indexes & Sorting
  131. Урок 131. 00:02:55
    Creating Combined Text Indexes
  132. Урок 132. 00:00:55
    Using Text Indexes to Exclude Words
  133. Урок 133. 00:06:33
    Setting the Default Language & Using Weights
  134. Урок 134. 00:07:41
    Building Indexes
  135. Урок 135. 00:02:25
    Wrap Up
  136. Урок 136. 00:00:54
    Module Introduction
  137. Урок 137. 00:04:52
    Adding GeoJSON Data
  138. Урок 138. 00:03:23
    Running Geo Queries
  139. Урок 139. 00:02:53
    Adding a Geospatial Index to Track the Distance
  140. Урок 140. 00:03:35
    Adding Additional Locations
  141. Урок 141. 00:06:23
    Finding Places Inside a Certain Area
  142. Урок 142. 00:05:28
    Finding Out If a User Is Inside a Specific Area
  143. Урок 143. 00:05:39
    Finding Places Within a Certain Radius
  144. Урок 144. 00:01:41
    Wrap Up
  145. Урок 145. 00:01:35
    Module Introduction
  146. Урок 146. 00:02:01
    What is the Aggregation Framework?
  147. Урок 147. 00:01:22
    Getting Started with the Aggregation Pipeline
  148. Урок 148. 00:03:13
    Using the Aggregation Framework
  149. Урок 149. 00:05:57
    Understanding the Group Stage
  150. Урок 150. 00:03:13
    Diving Deeper Into the Group Stage
  151. Урок 151. 00:09:59
    Working with $project
  152. Урок 152. 00:08:00
    Turning the Location Into a geoJSON Object
  153. Урок 153. 00:03:49
    Transforming the Birthdate
  154. Урок 154. 00:01:26
    Using Shortcuts for Transformations
  155. Урок 155. 00:02:41
    Understanding the $isoWeekYear Operator
  156. Урок 156. 00:00:56
    $group vs $project
  157. Урок 157. 00:04:04
    Pushing Elements Into Newly Created Arrays
  158. Урок 158. 00:02:51
    Understanding the $unwind Stage
  159. Урок 159. 00:00:51
    Eliminating Duplicate Values
  160. Урок 160. 00:03:04
    Using Projection with Arrays
  161. Урок 161. 00:01:13
    Getting the Length of an Array
  162. Урок 162. 00:04:44
    Using the $filter Operator
  163. Урок 163. 00:07:32
    Applying Multiple Operations to our Array
  164. Урок 164. 00:06:18
    Understanding $bucket
  165. Урок 165. 00:07:30
    Diving Into Additional Stages
  166. Урок 166. 00:01:48
    Writing Pipeline Results Into a New Collection
  167. Урок 167. 00:05:17
    Working with the $geoNear Stage
  168. Урок 168. 00:02:42
    Wrap Up
  169. Урок 169. 00:00:55
    Module Introduction
  170. Урок 170. 00:06:29
    Number Types - An Overview
  171. Урок 171. 00:03:34
    Understanding Programming Language Defaults
  172. Урок 172. 00:05:18
    Working with int32
  173. Урок 173. 00:06:33
    Working with int64
  174. Урок 174. 00:06:58
    Doing Maths with Floats int32s & int64s
  175. Урок 175. 00:04:21
    What's Wrong with Normal Doubles?
  176. Урок 176. 00:04:15
    Working with Decimal 128bit
  177. Урок 177. 00:01:41
    Wrap Up
  178. Урок 178. 00:04:24
    Module Introduction
  179. Урок 179. 00:06:49
    Understanding Role Based Access Control
  180. Урок 180. 00:02:14
    Roles - Examples
  181. Урок 181. 00:05:51
    Creating a User
  182. Урок 182. 00:05:41
    Built-In Roles - An Overview
  183. Урок 183. 00:04:49
    Assigning Roles to Users & Databases
  184. Урок 184. 00:05:07
    Updating & Extending Roles to Other Databases
  185. Урок 185. 00:10:22
    Adding SSL Transport Encryption
  186. Урок 186. 00:01:26
    Encryption at REST
  187. Урок 187. 00:03:22
    Wrap Up
  188. Урок 188. 00:01:53
    Module Introduction
  189. Урок 189. 00:03:02
    What Influences Performance?
  190. Урок 190. 00:05:06
    Understanding Capped Collections
  191. Урок 191. 00:04:37
    What are Replica Sets?
  192. Урок 192. 00:06:15
    Understanding Sharding
  193. Урок 193. 00:02:26
    Deploying a MongoDB Server
  194. Урок 194. 00:09:18
    Using MongoDB Atlas
  195. Урок 195. 00:01:28
    Backups & Setting Alerts in MongoDB Atlas
  196. Урок 196. 00:03:37
    Connecting to our Cluster
  197. Урок 197. 00:01:59
    Wrap Up
  198. Урок 198. 00:01:05
    Module Introduction
  199. Урок 199. 00:02:04
    What are Transactions?
  200. Урок 200. 00:02:19
    A Typical Usecase
  201. Урок 201. 00:07:43
    How Does a Transaction Work?
  202. Урок 202. 00:02:14
    Module Introduction
  203. Урок 203. 00:02:07
    Splitting Work Between the Driver & the Shell
  204. Урок 204. 00:04:50
    Preparing our Project
  205. Урок 205. 00:01:47
    Installing Visual Studio Code
  206. Урок 206. 00:04:57
    Installing the Node.js Driver
  207. Урок 207. 00:06:32
    Connecting Node.js & the MongoDB Cluster
  208. Урок 208. 00:04:54
    Storing Products in the Database
  209. Урок 209. 00:06:11
    Storing the Price as 128bit Decimal
  210. Урок 210. 00:06:24
    Fetching Data From the Database
  211. Урок 211. 00:11:49
    Creating a More Realistic Setup
  212. Урок 212. 00:03:21
    Getting a Single Product
  213. Урок 213. 00:07:29
    Editing & Deleting Products
  214. Урок 214. 00:04:59
    Implementing Pagination
  215. Урок 215. 00:01:28
    Adding an Index
  216. Урок 216. 00:07:04
    Signing Users Up
  217. Урок 217. 00:01:14
    Adding an Index to Make the Email Unique
  218. Урок 218. 00:05:19
    Adding User Sign In
  219. Урок 219. 00:01:12
    Wrap Up
  220. Урок 220. 00:01:43
    Module Introduction
  221. Урок 221. 00:07:24
    What is Stitch?
  222. Урок 222. 00:02:05
    Preparations
  223. Урок 223. 00:04:34
    Start Using Stitch
  224. Урок 224. 00:08:12
    Adding Stitch to our App & Initializing It
  225. Урок 225. 00:02:49
    Adding Authentication
  226. Урок 226. 00:03:59
    Sending Data Access Rules
  227. Урок 227. 00:01:50
    Fetching & Converting Data
  228. Урок 228. 00:03:03
    Deleting Products
  229. Урок 229. 00:04:10
    Finding a Single Product
  230. Урок 230. 00:03:30
    Adding Products
  231. Урок 231. 00:03:47
    Updating Products
  232. Урок 232. 00:01:55
    Switching to User Email & Password Authentication
  233. Урок 233. 00:06:33
    Adding User Sign Up & Confirmation
  234. Урок 234. 00:03:43
    Adding User Login
  235. Урок 235. 00:01:49
    Rules & Real Users
  236. Урок 236. 00:05:02
    Functions & Triggers
  237. Урок 237. 00:00:57
    Wrap Up
  238. Урок 238. 00:00:56
    Course Roundup