강의

멘토링

로드맵

BEST
Programming

/

Database

本当! Redisの活用

学んですぐに使えるRedis講座です!

  • qu3vipon
3시간 만에 완강할 수 있는 강의 ⏰
nosql
데이터베이스
Redis
cache
NoSQL

学習した受講者のレビュー

こんなことが学べます

  • Redisのさまざまなデータタイプを学びます。

  • 実践的な例を通してRedisを活用する方法を学びます。

  • キャッシュの概念と特徴を理解する。

チュートリアルレベルの講義はやめましょう🙅‍♂️
さまざまな例で実務に直接適用できるRedis講義です!

Key-Value NoSQL浮動の1位、Redis

Redisは、データベースエンジンのランキングで最大6位の最も人気のあるNoSQLデータベースの1つです。

RedisはIn-Memory Databaseで、さまざまなサービスで使用されています。 Redisが提供するデータ型を活用すると、バックエンド開発中に遭遇するさまざまな技術的問題を効率的に解決できます。

このレッスンでは、Redisについて学び、実際の例でRedisを活用する方法について詳しく学びます。

こんな方におすすめです

バックエンド就職準備生またはジュニア開発者

Redisを正しく使う方法が気になる方

システムデザインインタビューを準備中の方


学習内容📚

実例として見るRedis

Redisを使用して、さまざまな機能を実際に実装して活用する方法を学びます。

  • 一時パスワード(OTP)/分散ロック
  • レートリミッタ(Rate Limiter)/ソーシャルフィード
  • ログインセッション/オンラインステータスの表示
  • 地図半径ナビゲーション/訪問者数の推定など

可視化された図の提供

PPTとダイアグラムで初心者にもわかりやすく説明します。


Q&A 💬

Q. Redisを必ず学ばなければなりませんか?

はい、Redisの使用能力はバックエンド開発の基本だと思います。 Redisは、最も一般的なNoSQLデータベースの1つです。 Redisの使い方をよく理解すれば、他のNoSQLデータベースも比較的簡単に学ぶことができます。

Q. バックエンドをよく知らないのに講義を聞くことができますか?

はい、可能です。バックエンドをよく知らない初級からレディスを一度書いた中級受講生まですべて考慮して講義が制作されました。講義で取り上げる内容は深みがありますが、説明は非常に直感的で簡単です。また、なるべく平易な単語を使って概念を説明します。

Q. 講義を聞く前に準備すべきことはありますか?

別途の事前知識は必要ありませんが、入門講義ではないため、Web開発の基礎的な構造は知っていることをお勧めします。 (例:クライアント - サーバーモデル)

📢受講前に参考にしてください

  • 講義では、練習環境としてMacOSとターミナルを使用し、いくつかのDockerを利用します。
    • Windows環境でも実習が可能です。
  • 受講生には、学習資料として講義に使われたPPTファイルを提供します。

こんな方に
おすすめです

学習対象は
誰でしょう?

  • バックエンドの新開発者(または就任生)

  • Redisを正しく使う方法が気になる方

  • 大容量トラフィックを処理するためのRedisの使い方が気になった人

  • システムデザインインタビューを準備中の方

前提知識、
必要でしょうか?

  • Web開発構造の基本的な理解

こんにちは
です。

2,594

受講生

172

受講レビュー

133

回答

4.8

講座評価

6

講座

  • 백엔드 개발자

     

    • (전) 토스 증권 NoOps팀

    • (전) Asleep 슬립루틴 개발

    • (전) ABLY 광고 사업팀

    • PyCon Korea 21/22/23 Speaker

  • 강의

    • 오즈코딩스쿨 부트캠프 강사

      (Python, Django, FastAPI, Database, AWS)

    • 스파르타코딩클럽 온라인 튜터(AI 트랙)

    • 멀티캠퍼스 강사(SQL, Database)

  • 자격증 및 수상 내역

    • AWS 2023 StartUp Security GameDay 한국 1등

    • 3x AWS Certified

      • AWS Certified Database – Specialty

      • AWS Certified Solutions Architect - Associate

      • AWS Certified Developer - Associate

    • CKAD(Certified Kubernetes Application Developer)

  • 기술 블로그: qu3vipon.com

  • 깃허브: github.com/qu3vipon

カリキュラム

全体

43件 ∙ (1時間 41分)

講座資料(こうぎしりょう):

授業資料
講座掲載日: 
最終更新日: 

受講レビュー

全体

69件

4.8

69件の受講レビュー

  • bcna3797님의 프로필 이미지
    bcna3797

    受講レビュー 4

    平均評価 4.3

    3

    100% 受講後に作成

    As the title suggests, I thought it would be a simple project that follows the practical Redis usage. The first part was about learning Redis commands, and the part where Redis is actually used was just a PPT, which was really disappointing. The reason I paid for it was the latter.

    • qu3vipon
      知識共有者

      Hello. Did you happen to check the introductory video before taking the course? The course introduction video didn't mention building a simple project. I'm curious about what made you think that. And this course was intentionally designed not to be dependent on a specific programming language. This is because the most important thing when using Redis is the technology of Redis itself. Nevertheless, because Redis's interface is very intuitive, you can essentially solve the desired part by translating the content covered in the lecture directly into the language you primarily use. For example, if your primary language is Python, the Redis SET command maps directly as follows: >>> import redis >>> r = redis.Redis(host='localhost', port=6379, db=0) >>> r.set('foo', 'bar')

  • gulgulri님의 프로필 이미지
    gulgulri

    受講レビュー 6

    平均評価 4.8

    4

    100% 受講後に作成

    I listened to the lecture well. It would have been nice if I could understand the problem along with the code, but that's too bad. Thank you for the lecture.

    • ayuminee20629님의 프로필 이미지
      ayuminee20629

      受講レビュー 1

      平均評価 5.0

      5

      100% 受講後に作成

      I am currently working as a backend developer. I am using Redis, but I felt like it was lacking, so I took this course. I learned a lot while taking the Redis course. The course content was organized systematically, and the instructor's explanations were easy to understand and clear, so I was able to understand even complex content well. In the course, I also learned how to utilize Redis through real examples and practice, which I think will be of great help in my work. Overall, it was a satisfactory course, and I feel like my understanding of Redis has greatly improved. I am looking forward to the next course!ㅎㅎ

      • hanumoka님의 프로필 이미지
        hanumoka

        受講レビュー 55

        平均評価 4.4

        5

        100% 受講後に作成

        Summary Notes

        • chuing님의 프로필 이미지
          chuing

          受講レビュー 13

          平均評価 4.8

          4

          100% 受講後に作成

          The lecture is clear and seems to be very helpful for practical use. The only downside is that the lecture fee feels a bit expensive compared to the short lecture time.

          • qu3vipon
            知識共有者

            Hello, Donghaebada. I'm glad it was helpful. I'm sorry about the length of the lecture. Let me make a small excuse. As a student, I also felt sorry for the lectures that were unnecessarily long because I kept repeating similar things every time I listened to online lectures, so I tried to prepare my lectures as short as possible but with substance. I intentionally removed all unnecessary parts through cut editing. I also continued to re-record parts that I felt were difficult to explain or too long. I thought that would make it easier for students to understand. Although the Ladies' lectures are less than 2 hours long, much more time, effort, and sincerity went into them. Of course, it's an effort that should be made as a paid lecture provider, but I wrote a few words out of concern that you might think I'm just trying to make a lot of money with short lectures. Nevertheless, I sincerely thank you for choosing my lectures!

        期間限定セール、あと6日日で終了

        ¥26

        22%

        ¥5,278

        qu3viponの他の講座

        知識共有者の他の講座を見てみましょう!

        似ている講座

        同じ分野の他の講座を見てみましょう!