[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-redis-redis-observability":3,"mdc-g5t3kd-key":38,"related-org-redis-redis-observability":752,"related-repo-redis-redis-observability":937},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":33,"sourceUrl":36,"mdContent":37},"redis-observability","monitor and triage Redis performance","Redis observability guidance — which metrics to monitor (memory, connections, hit ratio, ops\u002Fsec, rejected connections), which built-in commands to reach for during incident triage (SLOWLOG, INFO, MEMORY DOCTOR, CLIENT LIST, FT.PROFILE), and when to use the Redis Insight GUI. Use when setting up monitoring or alerts for a Redis instance, diagnosing a performance regression, profiling a slow FT.SEARCH query, or wiring Redis metrics into Prometheus, Datadog, or similar.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"redis","Redis","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fredis.png",[12,16,19,22,23],{"name":13,"slug":14,"type":15},"Observability","observability","tag",{"name":17,"slug":18,"type":15},"Performance","performance",{"name":20,"slug":21,"type":15},"Monitoring","monitoring",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"Debugging","debugging",92,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-skills","2026-05-27T07:19:47.780873","MIT",21,[32,8],"agent-skills",{"repoUrl":27,"stars":26,"forks":30,"topics":34,"description":35},[32,8],"Redis' official collection of agent skills","https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fredis-observability","---\nname: redis-observability\ndescription: Redis observability guidance — which metrics to monitor (memory, connections, hit ratio, ops\u002Fsec, rejected connections), which built-in commands to reach for during incident triage (SLOWLOG, INFO, MEMORY DOCTOR, CLIENT LIST, FT.PROFILE), and when to use the Redis Insight GUI. Use when setting up monitoring or alerts for a Redis instance, diagnosing a performance regression, profiling a slow FT.SEARCH query, or wiring Redis metrics into Prometheus, Datadog, or similar.\nlicense: MIT\nmetadata:\n  author: Redis, Inc.\n  version: \"0.1.0\"\n---\n\n# Redis Observability\n\nWhat to watch, what to run, and what to alert on. Covers the metrics every Redis deployment should monitor and the built-in commands for ad-hoc diagnosis.\n\n## When to apply\n\n- Setting up monitoring or alerts for a Redis instance.\n- Diagnosing a Redis performance regression (high latency, memory pressure, connection storms).\n- Profiling a slow `FT.SEARCH` or pipeline.\n- Wiring Redis metrics into Prometheus, Datadog, CloudWatch, or similar.\n\n## 1. Monitor these metrics\n\nThese come from `INFO` and should be exported to your monitoring system.\n\n| Metric | What it tells you | Alert when |\n|---|---|---|\n| `used_memory` | Current memory usage | > 80% of `maxmemory` |\n| `connected_clients` | Open connections | Sudden spikes or drops |\n| `blocked_clients` | Clients waiting on blocking ops | > 0 sustained |\n| `instantaneous_ops_per_sec` | Current throughput | Significant drops |\n| `keyspace_hits` \u002F `keyspace_misses` | Cache hit ratio | Hit ratio \u003C 80% |\n| `rejected_connections` | Hit `maxclients` cap | > 0 |\n| `rdb_last_save_time` | Last persistence snapshot | Too old vs. RPO |\n\n```python\ninfo = redis.info()\nhit_ratio = info[\"keyspace_hits\"] \u002F max(1, info[\"keyspace_hits\"] + info[\"keyspace_misses\"])\nprint(f\"Memory:    {info['used_memory_human']}\")\nprint(f\"Clients:   {info['connected_clients']}\")\nprint(f\"Ops\u002Fsec:   {info['instantaneous_ops_per_sec']}\")\nprint(f\"Hit ratio: {hit_ratio:.1%}\")\n```\n\nSee [references\u002Fmetrics.md](references\u002Fmetrics.md).\n\n## 2. Built-in commands for debugging\n\nReach for these when something looks off.\n\n| Topic | Command |\n|---|---|\n| Slow commands | `SLOWLOG GET 10` \u002F `SLOWLOG LEN` \u002F `SLOWLOG RESET` |\n| Server snapshot | `INFO all` (or `INFO memory` \u002F `INFO stats` \u002F `INFO clients` \u002F `INFO replication`) |\n| Memory diagnostics | `MEMORY DOCTOR` \u002F `MEMORY STATS` \u002F `MEMORY USAGE \u003Ckey>` |\n| Connections | `CLIENT LIST` \u002F `CLIENT INFO` |\n| RQE \u002F Search | `FT.INFO \u003Cidx>` \u002F `FT.PROFILE \u003Cidx> SEARCH QUERY \"...\"` |\n\nThe two most useful for incident triage:\n\n- **`SLOWLOG GET`** to find queries that exceeded the `slowlog-log-slower-than` threshold (10ms by default). The output shows the exact command and duration in microseconds.\n- **`MEMORY DOCTOR`** for memory pressure — it returns a one-paragraph summary of what's unusual about memory usage right now.\n\n```python\nfor entry in redis.slowlog_get(10):\n    print(f\"{entry['duration']}μs  {entry['command']}\")\n```\n\nSee [references\u002Fcommands.md](references\u002Fcommands.md).\n\n## 3. Redis Insight\n\nFor interactive use (running queries, browsing keys, profiling indexes), [Redis Insight](https:\u002F\u002Fredis.io\u002Finsight\u002F) is the official GUI. It surfaces the same `SLOWLOG` \u002F `INFO` \u002F `FT.PROFILE` data visually and includes Redis Copilot for natural-language queries. Useful during development and incident response; not a replacement for exporting metrics to your monitoring system.\n\n## References\n\n- [Redis: Latency monitoring](https:\u002F\u002Fredis.io\u002Fdocs\u002Flatest\u002Foperate\u002Foss_and_stack\u002Fmanagement\u002Foptimization\u002Flatency\u002F)\n- [Redis Insight](https:\u002F\u002Fredis.io\u002Finsight\u002F)\n",{"data":39,"body":43},{"name":4,"description":6,"license":29,"metadata":40},{"author":41,"version":42},"Redis, Inc.","0.1.0",{"type":44,"children":45},"root",[46,54,60,67,101,107,120,329,396,409,415,420,600,605,644,667,677,683,719,725,746],{"type":47,"tag":48,"props":49,"children":50},"element","h1",{"id":4},[51],{"type":52,"value":53},"text","Redis Observability",{"type":47,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"What to watch, what to run, and what to alert on. Covers the metrics every Redis deployment should monitor and the built-in commands for ad-hoc diagnosis.",{"type":47,"tag":61,"props":62,"children":64},"h2",{"id":63},"when-to-apply",[65],{"type":52,"value":66},"When to apply",{"type":47,"tag":68,"props":69,"children":70},"ul",{},[71,77,82,96],{"type":47,"tag":72,"props":73,"children":74},"li",{},[75],{"type":52,"value":76},"Setting up monitoring or alerts for a Redis instance.",{"type":47,"tag":72,"props":78,"children":79},{},[80],{"type":52,"value":81},"Diagnosing a Redis performance regression (high latency, memory pressure, connection storms).",{"type":47,"tag":72,"props":83,"children":84},{},[85,87,94],{"type":52,"value":86},"Profiling a slow ",{"type":47,"tag":88,"props":89,"children":91},"code",{"className":90},[],[92],{"type":52,"value":93},"FT.SEARCH",{"type":52,"value":95}," or pipeline.",{"type":47,"tag":72,"props":97,"children":98},{},[99],{"type":52,"value":100},"Wiring Redis metrics into Prometheus, Datadog, CloudWatch, or similar.",{"type":47,"tag":61,"props":102,"children":104},{"id":103},"_1-monitor-these-metrics",[105],{"type":52,"value":106},"1. Monitor these metrics",{"type":47,"tag":55,"props":108,"children":109},{},[110,112,118],{"type":52,"value":111},"These come from ",{"type":47,"tag":88,"props":113,"children":115},{"className":114},[],[116],{"type":52,"value":117},"INFO",{"type":52,"value":119}," and should be exported to your monitoring system.",{"type":47,"tag":121,"props":122,"children":123},"table",{},[124,148],{"type":47,"tag":125,"props":126,"children":127},"thead",{},[128],{"type":47,"tag":129,"props":130,"children":131},"tr",{},[132,138,143],{"type":47,"tag":133,"props":134,"children":135},"th",{},[136],{"type":52,"value":137},"Metric",{"type":47,"tag":133,"props":139,"children":140},{},[141],{"type":52,"value":142},"What it tells you",{"type":47,"tag":133,"props":144,"children":145},{},[146],{"type":52,"value":147},"Alert when",{"type":47,"tag":149,"props":150,"children":151},"tbody",{},[152,181,203,225,247,277,307],{"type":47,"tag":129,"props":153,"children":154},{},[155,165,170],{"type":47,"tag":156,"props":157,"children":158},"td",{},[159],{"type":47,"tag":88,"props":160,"children":162},{"className":161},[],[163],{"type":52,"value":164},"used_memory",{"type":47,"tag":156,"props":166,"children":167},{},[168],{"type":52,"value":169},"Current memory usage",{"type":47,"tag":156,"props":171,"children":172},{},[173,175],{"type":52,"value":174},"> 80% of ",{"type":47,"tag":88,"props":176,"children":178},{"className":177},[],[179],{"type":52,"value":180},"maxmemory",{"type":47,"tag":129,"props":182,"children":183},{},[184,193,198],{"type":47,"tag":156,"props":185,"children":186},{},[187],{"type":47,"tag":88,"props":188,"children":190},{"className":189},[],[191],{"type":52,"value":192},"connected_clients",{"type":47,"tag":156,"props":194,"children":195},{},[196],{"type":52,"value":197},"Open connections",{"type":47,"tag":156,"props":199,"children":200},{},[201],{"type":52,"value":202},"Sudden spikes or drops",{"type":47,"tag":129,"props":204,"children":205},{},[206,215,220],{"type":47,"tag":156,"props":207,"children":208},{},[209],{"type":47,"tag":88,"props":210,"children":212},{"className":211},[],[213],{"type":52,"value":214},"blocked_clients",{"type":47,"tag":156,"props":216,"children":217},{},[218],{"type":52,"value":219},"Clients waiting on blocking ops",{"type":47,"tag":156,"props":221,"children":222},{},[223],{"type":52,"value":224},"> 0 sustained",{"type":47,"tag":129,"props":226,"children":227},{},[228,237,242],{"type":47,"tag":156,"props":229,"children":230},{},[231],{"type":47,"tag":88,"props":232,"children":234},{"className":233},[],[235],{"type":52,"value":236},"instantaneous_ops_per_sec",{"type":47,"tag":156,"props":238,"children":239},{},[240],{"type":52,"value":241},"Current throughput",{"type":47,"tag":156,"props":243,"children":244},{},[245],{"type":52,"value":246},"Significant drops",{"type":47,"tag":129,"props":248,"children":249},{},[250,267,272],{"type":47,"tag":156,"props":251,"children":252},{},[253,259,261],{"type":47,"tag":88,"props":254,"children":256},{"className":255},[],[257],{"type":52,"value":258},"keyspace_hits",{"type":52,"value":260}," \u002F ",{"type":47,"tag":88,"props":262,"children":264},{"className":263},[],[265],{"type":52,"value":266},"keyspace_misses",{"type":47,"tag":156,"props":268,"children":269},{},[270],{"type":52,"value":271},"Cache hit ratio",{"type":47,"tag":156,"props":273,"children":274},{},[275],{"type":52,"value":276},"Hit ratio \u003C 80%",{"type":47,"tag":129,"props":278,"children":279},{},[280,289,302],{"type":47,"tag":156,"props":281,"children":282},{},[283],{"type":47,"tag":88,"props":284,"children":286},{"className":285},[],[287],{"type":52,"value":288},"rejected_connections",{"type":47,"tag":156,"props":290,"children":291},{},[292,294,300],{"type":52,"value":293},"Hit ",{"type":47,"tag":88,"props":295,"children":297},{"className":296},[],[298],{"type":52,"value":299},"maxclients",{"type":52,"value":301}," cap",{"type":47,"tag":156,"props":303,"children":304},{},[305],{"type":52,"value":306},"> 0",{"type":47,"tag":129,"props":308,"children":309},{},[310,319,324],{"type":47,"tag":156,"props":311,"children":312},{},[313],{"type":47,"tag":88,"props":314,"children":316},{"className":315},[],[317],{"type":52,"value":318},"rdb_last_save_time",{"type":47,"tag":156,"props":320,"children":321},{},[322],{"type":52,"value":323},"Last persistence snapshot",{"type":47,"tag":156,"props":325,"children":326},{},[327],{"type":52,"value":328},"Too old vs. RPO",{"type":47,"tag":330,"props":331,"children":336},"pre",{"className":332,"code":333,"language":334,"meta":335,"style":335},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","info = redis.info()\nhit_ratio = info[\"keyspace_hits\"] \u002F max(1, info[\"keyspace_hits\"] + info[\"keyspace_misses\"])\nprint(f\"Memory:    {info['used_memory_human']}\")\nprint(f\"Clients:   {info['connected_clients']}\")\nprint(f\"Ops\u002Fsec:   {info['instantaneous_ops_per_sec']}\")\nprint(f\"Hit ratio: {hit_ratio:.1%}\")\n","python","",[337],{"type":47,"tag":88,"props":338,"children":339},{"__ignoreMap":335},[340,351,360,369,378,387],{"type":47,"tag":341,"props":342,"children":345},"span",{"class":343,"line":344},"line",1,[346],{"type":47,"tag":341,"props":347,"children":348},{},[349],{"type":52,"value":350},"info = redis.info()\n",{"type":47,"tag":341,"props":352,"children":354},{"class":343,"line":353},2,[355],{"type":47,"tag":341,"props":356,"children":357},{},[358],{"type":52,"value":359},"hit_ratio = info[\"keyspace_hits\"] \u002F max(1, info[\"keyspace_hits\"] + info[\"keyspace_misses\"])\n",{"type":47,"tag":341,"props":361,"children":363},{"class":343,"line":362},3,[364],{"type":47,"tag":341,"props":365,"children":366},{},[367],{"type":52,"value":368},"print(f\"Memory:    {info['used_memory_human']}\")\n",{"type":47,"tag":341,"props":370,"children":372},{"class":343,"line":371},4,[373],{"type":47,"tag":341,"props":374,"children":375},{},[376],{"type":52,"value":377},"print(f\"Clients:   {info['connected_clients']}\")\n",{"type":47,"tag":341,"props":379,"children":381},{"class":343,"line":380},5,[382],{"type":47,"tag":341,"props":383,"children":384},{},[385],{"type":52,"value":386},"print(f\"Ops\u002Fsec:   {info['instantaneous_ops_per_sec']}\")\n",{"type":47,"tag":341,"props":388,"children":390},{"class":343,"line":389},6,[391],{"type":47,"tag":341,"props":392,"children":393},{},[394],{"type":52,"value":395},"print(f\"Hit ratio: {hit_ratio:.1%}\")\n",{"type":47,"tag":55,"props":397,"children":398},{},[399,401,407],{"type":52,"value":400},"See ",{"type":47,"tag":402,"props":403,"children":405},"a",{"href":404},"references\u002Fmetrics.md",[406],{"type":52,"value":404},{"type":52,"value":408},".",{"type":47,"tag":61,"props":410,"children":412},{"id":411},"_2-built-in-commands-for-debugging",[413],{"type":52,"value":414},"2. Built-in commands for debugging",{"type":47,"tag":55,"props":416,"children":417},{},[418],{"type":52,"value":419},"Reach for these when something looks off.",{"type":47,"tag":121,"props":421,"children":422},{},[423,439],{"type":47,"tag":125,"props":424,"children":425},{},[426],{"type":47,"tag":129,"props":427,"children":428},{},[429,434],{"type":47,"tag":133,"props":430,"children":431},{},[432],{"type":52,"value":433},"Topic",{"type":47,"tag":133,"props":435,"children":436},{},[437],{"type":52,"value":438},"Command",{"type":47,"tag":149,"props":440,"children":441},{},[442,473,521,552,576],{"type":47,"tag":129,"props":443,"children":444},{},[445,450],{"type":47,"tag":156,"props":446,"children":447},{},[448],{"type":52,"value":449},"Slow commands",{"type":47,"tag":156,"props":451,"children":452},{},[453,459,460,466,467],{"type":47,"tag":88,"props":454,"children":456},{"className":455},[],[457],{"type":52,"value":458},"SLOWLOG GET 10",{"type":52,"value":260},{"type":47,"tag":88,"props":461,"children":463},{"className":462},[],[464],{"type":52,"value":465},"SLOWLOG LEN",{"type":52,"value":260},{"type":47,"tag":88,"props":468,"children":470},{"className":469},[],[471],{"type":52,"value":472},"SLOWLOG RESET",{"type":47,"tag":129,"props":474,"children":475},{},[476,481],{"type":47,"tag":156,"props":477,"children":478},{},[479],{"type":52,"value":480},"Server snapshot",{"type":47,"tag":156,"props":482,"children":483},{},[484,490,492,498,499,505,506,512,513,519],{"type":47,"tag":88,"props":485,"children":487},{"className":486},[],[488],{"type":52,"value":489},"INFO all",{"type":52,"value":491}," (or ",{"type":47,"tag":88,"props":493,"children":495},{"className":494},[],[496],{"type":52,"value":497},"INFO memory",{"type":52,"value":260},{"type":47,"tag":88,"props":500,"children":502},{"className":501},[],[503],{"type":52,"value":504},"INFO stats",{"type":52,"value":260},{"type":47,"tag":88,"props":507,"children":509},{"className":508},[],[510],{"type":52,"value":511},"INFO clients",{"type":52,"value":260},{"type":47,"tag":88,"props":514,"children":516},{"className":515},[],[517],{"type":52,"value":518},"INFO replication",{"type":52,"value":520},")",{"type":47,"tag":129,"props":522,"children":523},{},[524,529],{"type":47,"tag":156,"props":525,"children":526},{},[527],{"type":52,"value":528},"Memory diagnostics",{"type":47,"tag":156,"props":530,"children":531},{},[532,538,539,545,546],{"type":47,"tag":88,"props":533,"children":535},{"className":534},[],[536],{"type":52,"value":537},"MEMORY DOCTOR",{"type":52,"value":260},{"type":47,"tag":88,"props":540,"children":542},{"className":541},[],[543],{"type":52,"value":544},"MEMORY STATS",{"type":52,"value":260},{"type":47,"tag":88,"props":547,"children":549},{"className":548},[],[550],{"type":52,"value":551},"MEMORY USAGE \u003Ckey>",{"type":47,"tag":129,"props":553,"children":554},{},[555,560],{"type":47,"tag":156,"props":556,"children":557},{},[558],{"type":52,"value":559},"Connections",{"type":47,"tag":156,"props":561,"children":562},{},[563,569,570],{"type":47,"tag":88,"props":564,"children":566},{"className":565},[],[567],{"type":52,"value":568},"CLIENT LIST",{"type":52,"value":260},{"type":47,"tag":88,"props":571,"children":573},{"className":572},[],[574],{"type":52,"value":575},"CLIENT INFO",{"type":47,"tag":129,"props":577,"children":578},{},[579,584],{"type":47,"tag":156,"props":580,"children":581},{},[582],{"type":52,"value":583},"RQE \u002F Search",{"type":47,"tag":156,"props":585,"children":586},{},[587,593,594],{"type":47,"tag":88,"props":588,"children":590},{"className":589},[],[591],{"type":52,"value":592},"FT.INFO \u003Cidx>",{"type":52,"value":260},{"type":47,"tag":88,"props":595,"children":597},{"className":596},[],[598],{"type":52,"value":599},"FT.PROFILE \u003Cidx> SEARCH QUERY \"...\"",{"type":47,"tag":55,"props":601,"children":602},{},[603],{"type":52,"value":604},"The two most useful for incident triage:",{"type":47,"tag":68,"props":606,"children":607},{},[608,631],{"type":47,"tag":72,"props":609,"children":610},{},[611,621,623,629],{"type":47,"tag":612,"props":613,"children":614},"strong",{},[615],{"type":47,"tag":88,"props":616,"children":618},{"className":617},[],[619],{"type":52,"value":620},"SLOWLOG GET",{"type":52,"value":622}," to find queries that exceeded the ",{"type":47,"tag":88,"props":624,"children":626},{"className":625},[],[627],{"type":52,"value":628},"slowlog-log-slower-than",{"type":52,"value":630}," threshold (10ms by default). The output shows the exact command and duration in microseconds.",{"type":47,"tag":72,"props":632,"children":633},{},[634,642],{"type":47,"tag":612,"props":635,"children":636},{},[637],{"type":47,"tag":88,"props":638,"children":640},{"className":639},[],[641],{"type":52,"value":537},{"type":52,"value":643}," for memory pressure — it returns a one-paragraph summary of what's unusual about memory usage right now.",{"type":47,"tag":330,"props":645,"children":647},{"className":332,"code":646,"language":334,"meta":335,"style":335},"for entry in redis.slowlog_get(10):\n    print(f\"{entry['duration']}μs  {entry['command']}\")\n",[648],{"type":47,"tag":88,"props":649,"children":650},{"__ignoreMap":335},[651,659],{"type":47,"tag":341,"props":652,"children":653},{"class":343,"line":344},[654],{"type":47,"tag":341,"props":655,"children":656},{},[657],{"type":52,"value":658},"for entry in redis.slowlog_get(10):\n",{"type":47,"tag":341,"props":660,"children":661},{"class":343,"line":353},[662],{"type":47,"tag":341,"props":663,"children":664},{},[665],{"type":52,"value":666},"    print(f\"{entry['duration']}μs  {entry['command']}\")\n",{"type":47,"tag":55,"props":668,"children":669},{},[670,671,676],{"type":52,"value":400},{"type":47,"tag":402,"props":672,"children":674},{"href":673},"references\u002Fcommands.md",[675],{"type":52,"value":673},{"type":52,"value":408},{"type":47,"tag":61,"props":678,"children":680},{"id":679},"_3-redis-insight",[681],{"type":52,"value":682},"3. Redis Insight",{"type":47,"tag":55,"props":684,"children":685},{},[686,688,696,698,704,705,710,711,717],{"type":52,"value":687},"For interactive use (running queries, browsing keys, profiling indexes), ",{"type":47,"tag":402,"props":689,"children":693},{"href":690,"rel":691},"https:\u002F\u002Fredis.io\u002Finsight\u002F",[692],"nofollow",[694],{"type":52,"value":695},"Redis Insight",{"type":52,"value":697}," is the official GUI. It surfaces the same ",{"type":47,"tag":88,"props":699,"children":701},{"className":700},[],[702],{"type":52,"value":703},"SLOWLOG",{"type":52,"value":260},{"type":47,"tag":88,"props":706,"children":708},{"className":707},[],[709],{"type":52,"value":117},{"type":52,"value":260},{"type":47,"tag":88,"props":712,"children":714},{"className":713},[],[715],{"type":52,"value":716},"FT.PROFILE",{"type":52,"value":718}," data visually and includes Redis Copilot for natural-language queries. Useful during development and incident response; not a replacement for exporting metrics to your monitoring system.",{"type":47,"tag":61,"props":720,"children":722},{"id":721},"references",[723],{"type":52,"value":724},"References",{"type":47,"tag":68,"props":726,"children":727},{},[728,738],{"type":47,"tag":72,"props":729,"children":730},{},[731],{"type":47,"tag":402,"props":732,"children":735},{"href":733,"rel":734},"https:\u002F\u002Fredis.io\u002Fdocs\u002Flatest\u002Foperate\u002Foss_and_stack\u002Fmanagement\u002Foptimization\u002Flatency\u002F",[692],[736],{"type":52,"value":737},"Redis: Latency monitoring",{"type":47,"tag":72,"props":739,"children":740},{},[741],{"type":47,"tag":402,"props":742,"children":744},{"href":690,"rel":743},[692],[745],{"type":52,"value":695},{"type":47,"tag":747,"props":748,"children":749},"style",{},[750],{"type":52,"value":751},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":753,"total":936},[754,774,792,805,818,826,842,862,876,891,906,923],{"slug":755,"name":755,"fn":756,"description":757,"org":758,"tags":759,"stars":26,"repoUrl":27,"updatedAt":773},"iris-development","integrate with Redis Iris AI products","Iris is Redis's umbrella for AI-focused products. Use this skill when integrating with the Iris Redis Agent Memory (RAM) data plane on Redis Cloud — recording session events for an AI agent, creating or searching long-term memories, configuring a memory store, or tuning background memory promotion. Code examples use the official `redis-agent-memory` (Python) and `@redis-iris\u002Fagent-memory` (TypeScript) SDKs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[760,763,766,769,772],{"name":761,"slug":762,"type":15},"Agents","agents",{"name":764,"slug":765,"type":15},"AI Infrastructure","ai-infrastructure",{"name":767,"slug":768,"type":15},"Backend","backend",{"name":770,"slug":771,"type":15},"Memory","memory",{"name":9,"slug":8,"type":15},"2026-05-27T07:19:45.213725",{"slug":775,"name":775,"fn":776,"description":777,"org":778,"tags":779,"stars":26,"repoUrl":27,"updatedAt":791},"redis-clustering","configure Redis clustering and replication","Redis Cluster and replication guidance covering hash tags for multi-key operations, avoiding CROSSSLOT errors, and reading from replicas to scale read-heavy workloads. Use when designing keys for a sharded Redis Cluster, debugging CROSSSLOT errors on MGET \u002F SDIFF \u002F pipelines, configuring a multi-key transaction in a cluster, or routing reads to replicas for caches, analytics, or dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[780,783,786,789,790],{"name":781,"slug":782,"type":15},"Architecture","architecture",{"name":784,"slug":785,"type":15},"Database","database",{"name":787,"slug":788,"type":15},"Infrastructure","infrastructure",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:38.757599",{"slug":793,"name":793,"fn":794,"description":795,"org":796,"tags":797,"stars":26,"repoUrl":27,"updatedAt":804},"redis-connections","optimize Redis client connections","Redis client and connection guidance covering connection pooling, multiplexing, pipelining, client-side caching with RESP3, avoiding slow commands (KEYS, SMEMBERS, HGETALL), and tuning socket timeouts. Use when configuring a Redis client (redis-py, Jedis, Lettuce, NRedisStack), batching commands for throughput, eliminating per-request connection creation, iterating large keyspaces with SCAN, enabling client-side caching for read-heavy workloads, or setting connect and read timeouts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[798,799,802,803],{"name":767,"slug":768,"type":15},{"name":800,"slug":801,"type":15},"Caching","caching",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:42.616757",{"slug":806,"name":806,"fn":807,"description":808,"org":809,"tags":810,"stars":26,"repoUrl":27,"updatedAt":817},"redis-core","model data with Redis structures","Core Redis modeling guidance — choose the right data structure (String, Hash, List, Set, Sorted Set, JSON, Stream, Vector Set) and use consistent colon-separated key names. Use when designing a Redis data model, caching objects, deciding between Hash and JSON, building counters, leaderboards, membership sets, or session stores, or when reviewing\u002Fcleaning up Redis key naming.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[811,812,815,816],{"name":781,"slug":782,"type":15},{"name":813,"slug":814,"type":15},"Data Modeling","data-modeling",{"name":784,"slug":785,"type":15},{"name":9,"slug":8,"type":15},"2026-05-27T07:19:41.317954",{"slug":4,"name":4,"fn":5,"description":6,"org":819,"tags":820,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[821,822,823,824,825],{"name":24,"slug":25,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":827,"name":827,"fn":828,"description":829,"org":830,"tags":831,"stars":26,"repoUrl":27,"updatedAt":841},"redis-search","implement Redis Search indexing and queries","Redis Search guidance covering FT.CREATE schema design, field type selection (TEXT, TAG, NUMERIC, GEO, GEOSHAPE, VECTOR, JSON path), DIALECT 2 query syntax, FT.SEARCH \u002F FT.AGGREGATE \u002F FT.HYBRID command selection, vector similarity with HNSW or FLAT, hybrid retrieval combining lexical and vector ranking, RAG pipelines, zero-downtime index updates via aliases, and debugging with FT.PROFILE and FT.EXPLAIN. Use when defining a search index on Hash or JSON documents, writing FT.SEARCH queries with filters, sorting, aggregation, or vector KNN, tuning HNSW parameters, building a RAG retrieval pipeline, or troubleshooting slow or empty search results.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[832,833,834,837,838],{"name":781,"slug":782,"type":15},{"name":784,"slug":785,"type":15},{"name":835,"slug":836,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},{"name":839,"slug":840,"type":15},"Search","search","2026-06-24T07:39:43.089819",{"slug":843,"name":843,"fn":844,"description":845,"org":846,"tags":847,"stars":26,"repoUrl":27,"updatedAt":861},"redis-security","secure Redis instances and clusters","Redis security guidance covering authentication (requirepass and ACL users), TLS, ACL-based least-privilege access control, restricting network exposure via bind and protected-mode, firewall rules, and disabling dangerous commands. Use when deploying Redis to production, defining ACL users for an application, configuring TLS connections, locking down a Redis instance behind a firewall, or auditing a Redis deployment for security hardening.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[848,851,854,857,858],{"name":849,"slug":850,"type":15},"Access Control","access-control",{"name":852,"slug":853,"type":15},"Authentication","authentication",{"name":855,"slug":856,"type":15},"Compliance","compliance",{"name":9,"slug":8,"type":15},{"name":859,"slug":860,"type":15},"Security","security","2026-05-27T07:19:40.030241",{"slug":863,"name":863,"fn":864,"description":865,"org":866,"tags":867,"stars":26,"repoUrl":27,"updatedAt":875},"redis-semantic-cache","implement semantic caching with Redis","Redis LangCache guidance for semantic caching of LLM responses on Redis Cloud — calling search\u002Fset via the SDK or REST API, tuning the similarity threshold, separating caches per task type, and filtering with custom attributes. Use when caching LLM completions or RAG answers to cut API cost and latency, building a cache-aside layer in front of OpenAI \u002F Anthropic \u002F etc., tuning hit rate vs precision, or splitting one app's LLM workloads into multiple LangCache caches.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[868,869,870,873,874],{"name":764,"slug":765,"type":15},{"name":800,"slug":801,"type":15},{"name":871,"slug":872,"type":15},"LLM","llm",{"name":9,"slug":8,"type":15},{"name":839,"slug":840,"type":15},"2026-05-27T07:19:43.897283",{"slug":877,"name":877,"fn":878,"description":879,"org":880,"tags":881,"stars":888,"repoUrl":889,"updatedAt":890},"agent-filesystem","manage persistent storage in Redis","Use when agents need persistent shared storage, when saving or restoring workspace state, or when coordinating file access across multiple agents and machines. Creates Redis-backed workspaces, checkpoints and restores agent state, mounts shared filesystems locally, searches workspace contents, and forks workspaces for parallel work.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[882,883,886,887],{"name":761,"slug":762,"type":15},{"name":884,"slug":885,"type":15},"File Storage","file-storage",{"name":770,"slug":771,"type":15},{"name":9,"slug":8,"type":15},22,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fagent-filesystem","2026-04-10T04:51:05.904489",{"slug":892,"name":892,"fn":893,"description":894,"org":895,"tags":896,"stars":888,"repoUrl":889,"updatedAt":905},"codex-settings-sync","sync Codex settings across computers","Use when the user wants to migrate Codex state in ~\u002F.codex into Agent Filesystem and mount the same shared Codex memory\u002Fsettings across multiple computers. Recommends a .afsignore before migration and defaults to excluding worktrees, caches, logs, and temporary files.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[897,900,901,904],{"name":898,"slug":899,"type":15},"Codex","codex",{"name":770,"slug":771,"type":15},{"name":902,"slug":903,"type":15},"Migration","migration",{"name":9,"slug":8,"type":15},"2026-04-10T04:51:07.268248",{"slug":907,"name":907,"fn":908,"description":909,"org":910,"tags":911,"stars":920,"repoUrl":921,"updatedAt":922},"cloud-database-provisioning","provision Redis Cloud databases","Provision a Redis Cloud database end-to-end — Essentials (fixed plan) or Pro (custom) — using Redis Cloud MCP tools",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[912,915,916,919],{"name":913,"slug":914,"type":15},"Cloud","cloud",{"name":784,"slug":785,"type":15},{"name":917,"slug":918,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},15,"https:\u002F\u002Fgithub.com\u002Fredis\u002Fredisctl","2026-06-03T07:53:00.906753",{"slug":924,"name":924,"fn":925,"description":926,"org":927,"tags":928,"stars":920,"repoUrl":921,"updatedAt":935},"compare-approaches","prototype Redis data model alternatives","Prototype and compare 2-3 Redis data model alternatives for the same workload",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[929,930,931,934],{"name":813,"slug":814,"type":15},{"name":784,"slug":785,"type":15},{"name":932,"slug":933,"type":15},"Prototyping","prototyping",{"name":9,"slug":8,"type":15},"2026-05-27T07:19:55.591944",27,{"items":938,"total":993},[939,947,955,962,969,977,985],{"slug":755,"name":755,"fn":756,"description":757,"org":940,"tags":941,"stars":26,"repoUrl":27,"updatedAt":773},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[942,943,944,945,946],{"name":761,"slug":762,"type":15},{"name":764,"slug":765,"type":15},{"name":767,"slug":768,"type":15},{"name":770,"slug":771,"type":15},{"name":9,"slug":8,"type":15},{"slug":775,"name":775,"fn":776,"description":777,"org":948,"tags":949,"stars":26,"repoUrl":27,"updatedAt":791},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[950,951,952,953,954],{"name":781,"slug":782,"type":15},{"name":784,"slug":785,"type":15},{"name":787,"slug":788,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":793,"name":793,"fn":794,"description":795,"org":956,"tags":957,"stars":26,"repoUrl":27,"updatedAt":804},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[958,959,960,961],{"name":767,"slug":768,"type":15},{"name":800,"slug":801,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":806,"name":806,"fn":807,"description":808,"org":963,"tags":964,"stars":26,"repoUrl":27,"updatedAt":817},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[965,966,967,968],{"name":781,"slug":782,"type":15},{"name":813,"slug":814,"type":15},{"name":784,"slug":785,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":970,"tags":971,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[972,973,974,975,976],{"name":24,"slug":25,"type":15},{"name":20,"slug":21,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},{"slug":827,"name":827,"fn":828,"description":829,"org":978,"tags":979,"stars":26,"repoUrl":27,"updatedAt":841},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[980,981,982,983,984],{"name":781,"slug":782,"type":15},{"name":784,"slug":785,"type":15},{"name":835,"slug":836,"type":15},{"name":9,"slug":8,"type":15},{"name":839,"slug":840,"type":15},{"slug":843,"name":843,"fn":844,"description":845,"org":986,"tags":987,"stars":26,"repoUrl":27,"updatedAt":861},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[988,989,990,991,992],{"name":849,"slug":850,"type":15},{"name":852,"slug":853,"type":15},{"name":855,"slug":856,"type":15},{"name":9,"slug":8,"type":15},{"name":859,"slug":860,"type":15},8]