Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Redis: The Complete Developer's Guide, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:01:07
    Hello and Welcome!
  • Урок 2. 00:04:16
    Why Use Redis?
  • Урок 3. 00:02:53
    Initial Setup
  • Урок 4. 00:04:52
    A Touch More Setup
  • Урок 5. 00:04:10
    Basic Commands
  • Урок 6. 00:05:52
    Documentation on Commands
  • Урок 7. 00:05:25
    Variations of SET
  • Урок 8. 00:06:56
    Use Case of Expiration Options
  • Урок 9. 00:04:59
    Setting Multiple Keys
  • Урок 10. 00:00:50
    GET and MGET
  • Урок 11. 00:03:36
    String Ranges
  • Урок 12. 00:09:40
    Are These Commands Even Useful?
  • Урок 13. 00:05:13
    Dealing with Numbers
  • Урок 14. 00:08:57
    Again... Why do These Commands Exist?
  • Урок 15. 00:02:16
    Using a Completed Notebook
  • Урок 16. 00:00:52
    A Few Exercises
  • Урок 17. 00:03:21
    Exercise Solutions
  • Урок 18. 00:07:40
    Don't Skip This Video
  • Урок 19. 00:09:47
    Redis Client Libraries
  • Урок 20. 00:03:31
    First Implementation Task
  • Урок 21. 00:09:12
    Redis Design Methodology
  • Урок 22. 00:06:10
    Key Naming Methodology
  • Урок 23. 00:06:48
    Adding Page Caching
  • Урок 24. 00:05:03
    Better Key Generation
  • Урок 25. 00:02:02
    Hashes in Redis
  • Урок 26. 00:04:44
    Storing and Retrieving Hashes
  • Урок 27. 00:04:24
    Creating, Updating, and Retrieving Hashes
  • Урок 28. 00:02:44
    Deleting Hash Data
  • Урок 29. 00:04:46
    Numbers in Hashes
  • Урок 30. 00:04:09
    Slightly Unpredictable HSET and HGETALL
  • Урок 31. 00:06:43
    Issues with HSET
  • Урок 32. 00:06:17
    Issues with HGETALL
  • Урок 33. 00:09:06
    App Overview
  • Урок 34. 00:07:21
    Reducing the Design to Queries
  • Урок 35. 00:06:08
    What Data Type for Each Resource
  • Урок 36. 00:10:15
    Create User Implementation
  • Урок 37. 00:10:44
    Serialization and Deserialization
  • Урок 38. 00:01:18
    Adding Serialize
  • Урок 39. 00:03:56
    Fetching a User
  • Урок 40. 00:06:57
    Implementing Sessions
  • Урок 41. 00:07:24
    Fetching a Saved Session
  • Урок 42. 00:03:23
    Creating Sessions
  • Урок 43. 00:04:28
    Serializing Date Times
  • Урок 44. 00:07:17
    Storing Items
  • Урок 45. 00:08:00
    Fetching a Single Item
  • Урок 46. 00:03:45
    Batching Commands with Pipelines
  • Урок 47. 00:06:16
    Running Multiple Commands at the Same Time
  • Урок 48. 00:04:29
    Executing a Pipeline
  • Урок 49. 00:04:21
    Basics of Sets
  • Урок 50. 00:03:27
    Union of Sets
  • Урок 51. 00:01:18
    Intersection of Sets
  • Урок 52. 00:01:35
    Difference of Sets
  • Урок 53. 00:02:14
    Store Variations
  • Урок 54. 00:02:27
    Checking for an Element in a Set
  • Урок 55. 00:05:29
    Scanning a Set
  • Урок 56. 00:06:01
    Most Common Use Cases of Sets
  • Урок 57. 00:06:29
    Requiring Unique User Names
  • Урок 58. 00:05:27
    Adding a Like System
  • Урок 59. 00:05:32
    How to Count the Number of Likes?
  • Урок 60. 00:05:11
    Updating Like Quantities
  • Урок 61. 00:03:30
    Showing Liked Items
  • Урок 62. 00:02:14
    Showing Common Liked Items
  • Урок 63. 00:02:57
    Sorted Sets
  • Урок 64. 00:03:51
    Adding and Removing Members
  • Урок 65. 00:05:23
    Finding a Range of Scores
  • Урок 66. 00:01:53
    Removing the Highest and Lowest Members
  • Урок 67. 00:02:16
    Updating Scores
  • Урок 68. 00:08:59
    Querying a Sorted Set
  • Урок 69. 00:09:30
    Sorted Set Use Cases
  • Урок 70. 00:05:08
    Reminder on the Auth Flow
  • Урок 71. 00:04:12
    Storing Usernames
  • Урок 72. 00:02:41
    Kind of Storing Strings in Sorted Sets
  • Урок 73. 00:06:06
    Converting User IDs
  • Урок 74. 00:05:01
    Plan for Showing Most Viewed Items
  • Урок 75. 00:04:44
    Initializing Views on Item Creation
  • Урок 76. 00:04:21
    Incrementing View Counters
  • Урок 77. 00:07:00
    Items by Ending Soonest
  • Урок 78. 00:11:02
    Querying for Ending Soonest
  • Урок 79. 00:06:45
    Loading Relational Data
  • Урок 80. 00:05:15
    Relational Data with SORT
  • Урок 81. 00:05:42
    The Sort Command
  • Урок 82. 00:08:00
    Terminology Around Sort
  • Урок 83. 00:05:56
    Specifying the BY Argument
  • Урок 84. 00:09:01
    Joining Data with Sort
  • Урок 85. 00:08:39
    A Few More Arguments
  • Урок 86. 00:08:15
    Parsing SORT Output
  • Урок 87. 00:04:43
    HyperLogsLogs
  • Урок 88. 00:06:45
    When to use HyperLogsLogs
  • Урок 89. 00:04:33
    HyperLogsLogs in Action
  • Урок 90. 00:02:59
    Lists
  • Урок 91. 00:03:46
    Reading and Writing Data to a List
  • Урок 92. 00:05:53
    Ranges and Searches
  • Урок 93. 00:04:47
    Trimming Lists
  • Урок 94. 00:04:55
    Removing Elements
  • Урок 95. 00:10:13
    List Use Cases
  • Урок 96. 00:04:03
    Using Lists in Our App
  • Урок 97. 00:06:27
    Serializing and Deserializing Bids
  • Урок 98. 00:13:19
    Retrieving Bid Histories
  • Урок 99. 00:04:02
    More on Bids
  • Урок 100. 00:04:44
    Validating Bids
  • Урок 101. 00:03:27
    Updating Items with Bids
  • Урок 102. 00:04:23
    Issues with Bids
  • Урок 103. 00:10:13
    Understanding Concurrency Issues
  • Урок 104. 00:07:43
    Applying Atomic Updates
  • Урок 105. 00:04:53
    Transactions
  • Урок 106. 00:03:09
    Watching a Key with Transactions
  • Урок 107. 00:03:55
    Isolated Connections for Transactions
  • Урок 108. 00:06:05
    Solving Multiple Bids with a Transaction
  • Урок 109. 00:09:25
    Items by Price
  • Урок 110. 00:02:46
    More on Items by Price
  • Урок 111. 00:03:17
    Lua Scripting
  • Урок 112. 00:06:25
    Basics of Lua
  • Урок 113. 00:02:50
    Handling Arrays
  • Урок 114. 00:04:13
    Handling Tables
  • Урок 115. 00:04:31
    Loading and Executing Scripts
  • Урок 116. 00:06:22
    Providing Arguments
  • Урок 117. 00:06:36
    Providing Key lists
  • Урок 118. 00:04:30
    When to Use Scripts
  • Урок 119. 00:04:32
    Custom Scripts with Node-Redis
  • Урок 120. 00:12:02
    Lua Script Integration
  • Урок 121. 00:19:58
    Creating a View-Incrementing Script
  • Урок 122. 00:00:19
    Code Cleanup
  • Урок 123. 00:07:42
    Concurrency Revisited
  • Урок 124. 00:04:44
    Issues with WATCH
  • Урок 125. 00:06:02
    Overview of a Lock
  • Урок 126. 00:04:23
    Understanding the Goal
  • Урок 127. 00:10:31
    Implementing WithLock
  • Урок 128. 00:02:46
    Using WithLock
  • Урок 129. 00:02:54
    It Works!
  • Урок 130. 00:08:07
    Automatically Expiring Locks
  • Урок 131. 00:07:48
    Another Lock Issue
  • Урок 132. 00:03:05
    Solving Accidental Unlocks
  • Урок 133. 00:04:46
    Adding an Unlock Script
  • Урок 134. 00:03:47
    One Last Issue
  • Урок 135. 00:06:00
    Providing Expiration Signals
  • Урок 136. 00:07:27
    Alternate Expiration Solution
  • Урок 137. 00:02:34
    Redis Modules
  • Урок 138. 00:02:20
    Redis Core vs Redis Stack
  • Урок 139. 00:05:40
    Using Modules in Production
  • Урок 140. 00:03:40
    Overview on Search
  • Урок 141. 00:06:37
    Creating and Using an Index
  • Урок 142. 00:07:33
    Details on Indexes
  • Урок 143. 00:05:47
    Index Field Types
  • Урок 144. 00:05:34
    Numeric Queries
  • Урок 145. 00:03:08
    Tag Queries
  • Урок 146. 00:05:13
    Text Queries
  • Урок 147. 00:03:14
    Fuzzy Search
  • Урок 148. 00:02:08
    Prefix Search
  • Урок 149. 00:05:24
    Pre-Processing Search Criteria
  • Урок 150. 00:04:56
    Search Implementation
  • Урок 151. 00:04:21
    The Create Index Function
  • Урок 152. 00:05:27
    When to Create the Index?
  • Урок 153. 00:06:11
    Parsing the Search Term
  • Урок 154. 00:07:06
    Executing the Search
  • Урок 155. 00:02:36
    Seeding Some Fake Data
  • Урок 156. 00:07:18
    RediSearch and TF-IDF
  • Урок 157. 00:05:58
    Applying Weights to Fields
  • Урок 158. 00:04:54
    Understanding Queries with EXPLAIN
  • Урок 159. 00:02:32
    Query Performance with PROFILE
  • Урок 160. 00:04:26
    Sorting and Searching
  • Урок 161. 00:05:29
    Updating an Existing Index
  • Урок 162. 00:07:26
    Executing the Search
  • Урок 163. 00:03:06
    Deserializing Search Results
  • Урок 164. 00:01:32
    Streams
  • Урок 165. 00:07:00
    Use Case of Streams
  • Урок 166. 00:02:37
    Adding Messages to a Stream
  • Урок 167. 00:04:00
    Consuming Streams with XREAD
  • Урок 168. 00:06:34
    Blocking Reads
  • Урок 169. 00:01:31
    An XREAD Shortcut
  • Урок 170. 00:04:40
    A Little Gotcha Around Streams
  • Урок 171. 00:04:23
    Reading Streams with XRANGE
  • Урок 172. 00:02:27
    Issues with Standard Streams
  • Урок 173. 00:04:51
    Consumer Groups
  • Урок 174. 00:06:51
    Creating and Inspecting Consumer Groups
  • Урок 175. 00:08:31
    Consumer Groups in Action
  • Урок 176. 00:05:10
    Claiming Expired Messages