by shigemk2

当面は技術的なことしか書かない

redis

redis 7.2.3

更新の緊急度: 高 多くのユーザーに影響を与える重大なバグ修正 バグ修正: ファイルディスクリプタリーク修正、削除されたファイルがレプリカ上でディスクスペースを解放できない問題解消 クラスタノード削除後の可能なクラッシュ修正 github.com

RANDOMKEY

Return a random key from the currently selected database. redis.io

redis 7.0.12

セキュリティ修正: (CVE-2022-24834) 特別に作られたLuaスクリプトがRedisで実行されると、cjsonおよびcmsgpackライブラリでヒープオーバーフローを引き起こし、ヒープの破損やリモートコード実行が可能になる可能性があります。この問題は、Luaスクリプトの…

redis 6.0.17

(CVE-2022-35977) Integer overflow in the Redis SETRANGE and SORT/SORT_RO commands can drive Redis to OOM panic など github.com

redis 7.0.5

(CVE-2022-35951) Executing a XAUTOCLAIM command on a stream key in a specific state, with a specially crafted COUNT argument, may cause an integer overflow, a subsequent heap overflow, and potentially lead to remote code execution. The pro…

redis 7.0.4

Release 7.0.4 · redis/redis · GitHub (CVE-2022-31144) A specially crafted XAUTOCLAIM command on a stream key in a specific state may result with heap overflow, and potentially remote code execution. The problem affects Redis versions 7.0.0…

redis 7.0.3

この辺 Optimize zset conversion on large ZRANGESTORE (#10789) Optimize the performance of sending PING on large clusters (#10624) Allow for faster restart of Redis in cluster mode (#10912) github.com

redis 6.2.2

Release 6.2.2 · redis/redis · GitHub redis 6.2.2 by shigemk2 · Pull Request #75558 · Homebrew/homebrew-core · GitHub

redis 5.0.9

brew bump-formula-pr --url=http://download.redis.io/releases/redis-5.0.9.tar.gz --sha256=53d0ae164cd33536c3d4b720ae9a128ea6166ebf04ff1add3b85f1242090cb85 redis redis 5.0.9 by shigemk2 · Pull Request #53276 · Homebrew/homebrew-core · GitHub

redis 5.0.5

redis 5.0.5 AOFのバグフィックス https://raw.githubusercontent.com/antirez/redis/5.0/00-RELEASENOTES

redis 5.0.4

redisのダウンロードURLはSSLじゃない redis 5.0.4 by shigemk2 · Pull Request #38036 · Homebrew/homebrew-core · GitHub

redis HGETALL

redisのkey valueを全部取得する HGETALL – Redis

redis 5.0.2

Welcome to Redis 5.0.2. This release fixes two issues with Streams consumer groups, where items could be returned duplicated by XREADGROUP when accessing the history, and another bug where XREADGROUP can report some history even if the com…

Redis TTL

redisのTTL TTL KEY で確認できる TTLが設定されていないときの挙動は2.8より前か後かによって違う。 TTL – Redis

redis keys

やっぱね、公式見たほうが早いし正確。 "OK" redis> KEYS *o* 1) "two" 2) "one" 3) "four" redis> KEYS t?? 1) "two" redis> KEYS * 1) "two" 2) "one" 3) "three" 4) "four" redis> KEYS – Redis