Why Your MySQL Needs Redis

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2024

ความคิดเห็น • 13

  • @thingsinthebox
    @thingsinthebox 6 ปีที่แล้ว +20

    key takeaway : redis solves following issues : #1 minimize the cost by not just adding more computing power, databases, Redis can achieve same workload using much less servers # 2 support adding new features and stay flexible by using flexible data structures #3 how to keep it fast by not merely adding physical mysql databases but by using redis
    Redis features: #1 fast, #2 flexible data structures it can save #3 extensibility ( f.x you can add search module to turn redis into mini google)

  • @JeremyAndersonBoise
    @JeremyAndersonBoise 2 ปีที่แล้ว

    At about 41:00 - CRDT are a concept introduced by Barbara Liskov and Andrew Myers in "A Decentralized Model for Information Flow Control" published in 1997, not exactly a "very new concept in computer science," to me. Still totally awesome news that Redis supports it intentionally.

  • @tharun8164
    @tharun8164 ปีที่แล้ว

    20:17 Does the Redis MULTI and EXEC acts as a transaction? If 2nd operation fails, will the 1st operation rollback? As per my exploration, this doesn't ensure rollback.

    • @Redisinc
      @Redisinc  ปีที่แล้ว

      Redis Transactions don't work like that, so no the first op won't be rolled back. Details here: redis.io/docs/manual/transactions/

  • @vivekvs14
    @vivekvs14 5 ปีที่แล้ว +1

    For a unique list of emails, SETNX should be used. SET will overwrite the existing value before version 2.6.12.

  • @pengdu7751
    @pengdu7751 2 ปีที่แล้ว +1

    first time seeing access is represented going from right to left

  • @markokrstic90
    @markokrstic90 6 ปีที่แล้ว +3

    "INCR" does not set value to 0 if it does not exist, it sets the value to 1.

  • @ananava254
    @ananava254 3 ปีที่แล้ว +1

    To implement “Write through” I have to write on SQL and Redis at the same time?

  • @nicocabral8052
    @nicocabral8052 6 ปีที่แล้ว

    Hi redis labs.. i have a question i hope you can help me, i am developing a aplication with lambda function.. which uploads to aws database with a minimum of 10000 data I wanted to make streaming upload so that the users can track the progress on how many files are already succesfully insert to datatabase .the users on the client side can see how much percentage is already done inserted from a 10000 data to aws database. The client is just listening to socket port with redis. Thanks

  • @autuannhan9200
    @autuannhan9200 6 ปีที่แล้ว +6

    can you share me your slide , please...

  • @canho5788
    @canho5788 3 ปีที่แล้ว

    Superb.