[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-upstash-upstash-cli":3,"mdc-b5ug25-key":37,"related-repo-upstash-upstash-cli":3828,"related-org-upstash-upstash-cli":3928},{"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":32,"sourceUrl":35,"mdContent":36},"upstash-cli","manage Upstash resources via CLI","Run the Upstash CLI (`upstash`) against the Upstash Developer API for Redis, Vector, Search, QStash, and teams. Use when listing or managing databases, backups, vector\u002Fsearch indexes, QStash instances, team members, stats, or any non-interactive Upstash automation with JSON output and terminal commands.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"upstash","Upstash","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fupstash.png",[12,16,19,22,23],{"name":13,"slug":14,"type":15},"CLI","cli","tag",{"name":17,"slug":18,"type":15},"Database","database",{"name":20,"slug":21,"type":15},"Redis","redis",{"name":9,"slug":8,"type":15},{"name":24,"slug":25,"type":15},"Serverless","serverless",15,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fskills","2026-04-27T05:30:29.643462",null,2,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Collection of skills for Upstash","https:\u002F\u002Fgithub.com\u002Fupstash\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fupstash-cli","---\nname: upstash-cli\ndescription: Run the Upstash CLI (`upstash`) against the Upstash Developer API for Redis, Vector, Search, QStash, and teams. Use when listing or managing databases, backups, vector\u002Fsearch indexes, QStash instances, team members, stats, or any non-interactive Upstash automation with JSON output and terminal commands.\n---\n\nThe Upstash CLI (`upstash`) manages Upstash services via the Upstash Developer API. All commands are non-interactive and emit JSON on stdout. Errors go to stderr as `{ \"error\": \"...\" }` with exit code `1`.\n\n## Install\n\n```bash\nnpm i -g @upstash\u002Fcli\n```\n\n## Authentication\n\nRecommended: run `upstash login` once per machine. Prompts for email and a Developer API key (create one at https:\u002F\u002Fconsole.upstash.com\u002Faccount\u002Fapi), verifies them, and saves to `~\u002F.config\u002Fupstash\u002Fconfig.json`.\n\n```bash\nupstash login\n```\n\nAlternatives — env vars (also auto-loaded from a `.env` in cwd), or `--email` \u002F `--api-key` inline, or `--env-path \u003Cpath>` to point at a specific `.env`:\n\n```bash\nexport UPSTASH_EMAIL=you@example.com\nexport UPSTASH_API_KEY=your_api_key\n```\n\nPrecedence: flags > env vars > `.env` > saved config. Prefer a **read-only** API key for agents when possible — mutations fail at the API, the same way they would in the console.\n\n## Resource ID flags\n\n| Flag | Products |\n|------|----------|\n| `--db-id \u003Cid>` | Redis |\n| `--index-id \u003Cid>` | Vector, Search |\n| `--qstash-id \u003Cid>` | QStash |\n| `--team-id \u003Cid>` | Team |\n\n## Redis\n\n```bash\nupstash redis list\nupstash redis get --db-id \u003Cid> [--hide-credentials]\nupstash redis create --name \u003Cname> --region \u003Cregion> [--read-regions \u003Cr1> \u003Cr2>]\nupstash redis delete --db-id \u003Cid> [--dry-run]\nupstash redis rename --db-id \u003Cid> --name \u003Cnew-name>\nupstash redis reset-password --db-id \u003Cid>\nupstash redis stats --db-id \u003Cid>\n\nupstash redis enable-tls --db-id \u003Cid>\nupstash redis {enable,disable}-eviction --db-id \u003Cid>\nupstash redis {enable,disable}-autoupgrade --db-id \u003Cid>\nupstash redis change-plan --db-id \u003Cid> --plan \u003Cfree|payg|pro|paid>\nupstash redis update-budget --db-id \u003Cid> --budget \u003Ccents>\nupstash redis update-regions --db-id \u003Cid> --read-regions \u003Cr1> \u003Cr2>\nupstash redis move-to-team --db-id \u003Cid> --team-id \u003Cid>\n```\n\nRegions — AWS: `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`, `ca-central-1`, `eu-central-1`, `eu-west-1`, `eu-west-2`, `sa-east-1`, `ap-south-1`, `ap-northeast-1`, `ap-southeast-1`, `ap-southeast-2`, `af-south-1`. GCP: `us-central1`, `us-east4`, `europe-west1`, `asia-northeast1`.\n\n### Redis backups\n\n```bash\nupstash redis backup list --db-id \u003Cid>\nupstash redis backup create --db-id \u003Cid> --name \u003Cname>\nupstash redis backup delete --db-id \u003Cid> --backup-id \u003Cid> [--dry-run]\nupstash redis backup restore --db-id \u003Cid> --backup-id \u003Cid>\nupstash redis backup {enable,disable}-daily --db-id \u003Cid>\n```\n\n### Redis exec (REST, not the Developer API key)\n\n```bash\nupstash redis exec --db-url \u003Curl> --db-token \u003Ctoken> SET key value\nupstash redis exec --db-url \u003Curl> --db-token \u003Ctoken> --json '[\"SET\",\"key\",\"value\"]'\n```\n\n`--db-url` \u002F `--db-token` fall back to `UPSTASH_REDIS_REST_URL` \u002F `UPSTASH_REDIS_REST_TOKEN`. Get both from `endpoint` and `rest_token` in `upstash redis get --db-id \u003Cid>`.\n\n## Team\n\n```bash\nupstash team list\nupstash team create --name \u003Cname> [--copy-cc]\nupstash team delete --team-id \u003Cid> [--dry-run]\nupstash team members --team-id \u003Cid>\nupstash team add-member --team-id \u003Cid> --member-email \u003Cemail> --role \u003Cadmin|dev|finance>\nupstash team remove-member --team-id \u003Cid> --member-email \u003Cemail> [--dry-run]\n```\n\n## Vector\n\n```bash\nupstash vector list\nupstash vector get --index-id \u003Cid>\nupstash vector create --name \u003Cname> --region \u003Cregion> --similarity-function \u003Cfn> --dimension-count \u003Cn> [--type payg] [--index-type \u003Ctype>] [--embedding-model \u003Cm>] [--sparse-embedding-model \u003Cm>]\nupstash vector delete --index-id \u003Cid> [--dry-run]\nupstash vector rename --index-id \u003Cid> --name \u003Cnew-name>\nupstash vector reset-password --index-id \u003Cid>\nupstash vector set-plan --index-id \u003Cid> --plan \u003Cfree|payg|fixed>\nupstash vector transfer --index-id \u003Cid> --target-account \u003Cid>\nupstash vector stats                             # aggregate across all indexes\nupstash vector index-stats --index-id \u003Cid> [--period \u003C1h|3h|12h|1d|3d|7d|30d>]\n```\n\nRegions: `eu-west-1`, `us-east-1`, `us-central1`. Similarity: `COSINE`, `EUCLIDEAN`, `DOT_PRODUCT`. Index types: `DENSE`, `SPARSE`, `HYBRID`. Dense models: `BGE_SMALL_EN_V1_5`, `BGE_BASE_EN_V1_5`, `BGE_LARGE_EN_V1_5`, `BGE_M3`. Sparse models: `BM25`, `BGE_M3`. For `HYBRID` with managed embeddings, set `--dimension-count 0`.\n\n## Search\n\n```bash\nupstash search list\nupstash search get --index-id \u003Cid>\nupstash search create --name \u003Cname> --region \u003Cregion> --type \u003Cfree|payg|fixed>\nupstash search delete --index-id \u003Cid> [--dry-run]\nupstash search rename --index-id \u003Cid> --name \u003Cnew-name>\nupstash search reset-password --index-id \u003Cid>\nupstash search transfer --index-id \u003Cid> --target-account \u003Cid>\nupstash search stats\nupstash search index-stats --index-id \u003Cid> [--period \u003C1h|3h|12h|1d|3d|7d|30d>]\n```\n\nRegions: `eu-west-1`, `us-central1`.\n\n## QStash\n\n```bash\nupstash qstash list                              # run first; maps region → id\nupstash qstash get --qstash-id \u003Cid>\nupstash qstash rotate-token --qstash-id \u003Cid>\nupstash qstash set-plan --qstash-id \u003Cid> --plan \u003Cpaid|qstash_fixed_1m|qstash_fixed_10m|qstash_fixed_100m>\nupstash qstash stats --qstash-id \u003Cid> [--period \u003C1h|3h|12h|1d|3d|7d|30d>]\nupstash qstash ipv4                              # CIDR blocks for allowlisting\nupstash qstash move-to-team --qstash-id \u003Cid> --target-team-id \u003Cid>\nupstash qstash update-budget --qstash-id \u003Cid> --budget \u003Cdollars>    # 0 = no limit\nupstash qstash {enable,disable}-prodpack --qstash-id \u003Cid>\n```\n\n## Conventions\n\n- Pipe any output to `jq` for field extraction, e.g. `upstash redis list | jq '.[].database_id'`.\n- Use `--dry-run` first on any `delete` or `remove-member`.\n- Use `--hide-credentials` on `redis get` when the password isn't needed.\n",{"data":38,"body":39},{"name":4,"description":6},{"type":40,"children":41},"root",[42,74,81,120,126,156,175,219,273,293,299,394,398,1132,1265,1272,1543,1549,1707,1763,1768,2060,2066,2687,2812,2818,3267,3283,3288,3743,3749,3822],{"type":43,"tag":44,"props":45,"children":46},"element","p",{},[47,50,56,58,64,66,72],{"type":48,"value":49},"text","The Upstash CLI (",{"type":43,"tag":51,"props":52,"children":54},"code",{"className":53},[],[55],{"type":48,"value":8},{"type":48,"value":57},") manages Upstash services via the Upstash Developer API. All commands are non-interactive and emit JSON on stdout. Errors go to stderr as ",{"type":43,"tag":51,"props":59,"children":61},{"className":60},[],[62],{"type":48,"value":63},"{ \"error\": \"...\" }",{"type":48,"value":65}," with exit code ",{"type":43,"tag":51,"props":67,"children":69},{"className":68},[],[70],{"type":48,"value":71},"1",{"type":48,"value":73},".",{"type":43,"tag":75,"props":76,"children":78},"h2",{"id":77},"install",[79],{"type":48,"value":80},"Install",{"type":43,"tag":82,"props":83,"children":88},"pre",{"className":84,"code":85,"language":86,"meta":87,"style":87},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm i -g @upstash\u002Fcli\n","bash","",[89],{"type":43,"tag":51,"props":90,"children":91},{"__ignoreMap":87},[92],{"type":43,"tag":93,"props":94,"children":97},"span",{"class":95,"line":96},"line",1,[98,104,110,115],{"type":43,"tag":93,"props":99,"children":101},{"style":100},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[102],{"type":48,"value":103},"npm",{"type":43,"tag":93,"props":105,"children":107},{"style":106},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[108],{"type":48,"value":109}," i",{"type":43,"tag":93,"props":111,"children":112},{"style":106},[113],{"type":48,"value":114}," -g",{"type":43,"tag":93,"props":116,"children":117},{"style":106},[118],{"type":48,"value":119}," @upstash\u002Fcli\n",{"type":43,"tag":75,"props":121,"children":123},{"id":122},"authentication",[124],{"type":48,"value":125},"Authentication",{"type":43,"tag":44,"props":127,"children":128},{},[129,131,137,139,147,149,155],{"type":48,"value":130},"Recommended: run ",{"type":43,"tag":51,"props":132,"children":134},{"className":133},[],[135],{"type":48,"value":136},"upstash login",{"type":48,"value":138}," once per machine. Prompts for email and a Developer API key (create one at ",{"type":43,"tag":140,"props":141,"children":145},"a",{"href":142,"rel":143},"https:\u002F\u002Fconsole.upstash.com\u002Faccount\u002Fapi",[144],"nofollow",[146],{"type":48,"value":142},{"type":48,"value":148},"), verifies them, and saves to ",{"type":43,"tag":51,"props":150,"children":152},{"className":151},[],[153],{"type":48,"value":154},"~\u002F.config\u002Fupstash\u002Fconfig.json",{"type":48,"value":73},{"type":43,"tag":82,"props":157,"children":159},{"className":84,"code":158,"language":86,"meta":87,"style":87},"upstash login\n",[160],{"type":43,"tag":51,"props":161,"children":162},{"__ignoreMap":87},[163],{"type":43,"tag":93,"props":164,"children":165},{"class":95,"line":96},[166,170],{"type":43,"tag":93,"props":167,"children":168},{"style":100},[169],{"type":48,"value":8},{"type":43,"tag":93,"props":171,"children":172},{"style":106},[173],{"type":48,"value":174}," login\n",{"type":43,"tag":44,"props":176,"children":177},{},[178,180,186,188,194,196,202,204,210,212,217],{"type":48,"value":179},"Alternatives — env vars (also auto-loaded from a ",{"type":43,"tag":51,"props":181,"children":183},{"className":182},[],[184],{"type":48,"value":185},".env",{"type":48,"value":187}," in cwd), or ",{"type":43,"tag":51,"props":189,"children":191},{"className":190},[],[192],{"type":48,"value":193},"--email",{"type":48,"value":195}," \u002F ",{"type":43,"tag":51,"props":197,"children":199},{"className":198},[],[200],{"type":48,"value":201},"--api-key",{"type":48,"value":203}," inline, or ",{"type":43,"tag":51,"props":205,"children":207},{"className":206},[],[208],{"type":48,"value":209},"--env-path \u003Cpath>",{"type":48,"value":211}," to point at a specific ",{"type":43,"tag":51,"props":213,"children":215},{"className":214},[],[216],{"type":48,"value":185},{"type":48,"value":218},":",{"type":43,"tag":82,"props":220,"children":222},{"className":84,"code":221,"language":86,"meta":87,"style":87},"export UPSTASH_EMAIL=you@example.com\nexport UPSTASH_API_KEY=your_api_key\n",[223],{"type":43,"tag":51,"props":224,"children":225},{"__ignoreMap":87},[226,252],{"type":43,"tag":93,"props":227,"children":228},{"class":95,"line":96},[229,235,241,247],{"type":43,"tag":93,"props":230,"children":232},{"style":231},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[233],{"type":48,"value":234},"export",{"type":43,"tag":93,"props":236,"children":238},{"style":237},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[239],{"type":48,"value":240}," UPSTASH_EMAIL",{"type":43,"tag":93,"props":242,"children":244},{"style":243},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[245],{"type":48,"value":246},"=",{"type":43,"tag":93,"props":248,"children":249},{"style":237},[250],{"type":48,"value":251},"you@example.com\n",{"type":43,"tag":93,"props":253,"children":254},{"class":95,"line":30},[255,259,264,268],{"type":43,"tag":93,"props":256,"children":257},{"style":231},[258],{"type":48,"value":234},{"type":43,"tag":93,"props":260,"children":261},{"style":237},[262],{"type":48,"value":263}," UPSTASH_API_KEY",{"type":43,"tag":93,"props":265,"children":266},{"style":243},[267],{"type":48,"value":246},{"type":43,"tag":93,"props":269,"children":270},{"style":237},[271],{"type":48,"value":272},"your_api_key\n",{"type":43,"tag":44,"props":274,"children":275},{},[276,278,283,285,291],{"type":48,"value":277},"Precedence: flags > env vars > ",{"type":43,"tag":51,"props":279,"children":281},{"className":280},[],[282],{"type":48,"value":185},{"type":48,"value":284}," > saved config. Prefer a ",{"type":43,"tag":286,"props":287,"children":288},"strong",{},[289],{"type":48,"value":290},"read-only",{"type":48,"value":292}," API key for agents when possible — mutations fail at the API, the same way they would in the console.",{"type":43,"tag":75,"props":294,"children":296},{"id":295},"resource-id-flags",[297],{"type":48,"value":298},"Resource ID flags",{"type":43,"tag":300,"props":301,"children":302},"table",{},[303,322],{"type":43,"tag":304,"props":305,"children":306},"thead",{},[307],{"type":43,"tag":308,"props":309,"children":310},"tr",{},[311,317],{"type":43,"tag":312,"props":313,"children":314},"th",{},[315],{"type":48,"value":316},"Flag",{"type":43,"tag":312,"props":318,"children":319},{},[320],{"type":48,"value":321},"Products",{"type":43,"tag":323,"props":324,"children":325},"tbody",{},[326,343,360,377],{"type":43,"tag":308,"props":327,"children":328},{},[329,339],{"type":43,"tag":330,"props":331,"children":332},"td",{},[333],{"type":43,"tag":51,"props":334,"children":336},{"className":335},[],[337],{"type":48,"value":338},"--db-id \u003Cid>",{"type":43,"tag":330,"props":340,"children":341},{},[342],{"type":48,"value":20},{"type":43,"tag":308,"props":344,"children":345},{},[346,355],{"type":43,"tag":330,"props":347,"children":348},{},[349],{"type":43,"tag":51,"props":350,"children":352},{"className":351},[],[353],{"type":48,"value":354},"--index-id \u003Cid>",{"type":43,"tag":330,"props":356,"children":357},{},[358],{"type":48,"value":359},"Vector, Search",{"type":43,"tag":308,"props":361,"children":362},{},[363,372],{"type":43,"tag":330,"props":364,"children":365},{},[366],{"type":43,"tag":51,"props":367,"children":369},{"className":368},[],[370],{"type":48,"value":371},"--qstash-id \u003Cid>",{"type":43,"tag":330,"props":373,"children":374},{},[375],{"type":48,"value":376},"QStash",{"type":43,"tag":308,"props":378,"children":379},{},[380,389],{"type":43,"tag":330,"props":381,"children":382},{},[383],{"type":43,"tag":51,"props":384,"children":386},{"className":385},[],[387],{"type":48,"value":388},"--team-id \u003Cid>",{"type":43,"tag":330,"props":390,"children":391},{},[392],{"type":48,"value":393},"Team",{"type":43,"tag":75,"props":395,"children":396},{"id":21},[397],{"type":48,"value":20},{"type":43,"tag":82,"props":399,"children":401},{"className":84,"code":400,"language":86,"meta":87,"style":87},"upstash redis list\nupstash redis get --db-id \u003Cid> [--hide-credentials]\nupstash redis create --name \u003Cname> --region \u003Cregion> [--read-regions \u003Cr1> \u003Cr2>]\nupstash redis delete --db-id \u003Cid> [--dry-run]\nupstash redis rename --db-id \u003Cid> --name \u003Cnew-name>\nupstash redis reset-password --db-id \u003Cid>\nupstash redis stats --db-id \u003Cid>\n\nupstash redis enable-tls --db-id \u003Cid>\nupstash redis {enable,disable}-eviction --db-id \u003Cid>\nupstash redis {enable,disable}-autoupgrade --db-id \u003Cid>\nupstash redis change-plan --db-id \u003Cid> --plan \u003Cfree|payg|pro|paid>\nupstash redis update-budget --db-id \u003Cid> --budget \u003Ccents>\nupstash redis update-regions --db-id \u003Cid> --read-regions \u003Cr1> \u003Cr2>\nupstash redis move-to-team --db-id \u003Cid> --team-id \u003Cid>\n",[402],{"type":43,"tag":51,"props":403,"children":404},{"__ignoreMap":87},[405,422,468,569,611,670,707,744,754,791,828,865,948,1008,1075],{"type":43,"tag":93,"props":406,"children":407},{"class":95,"line":96},[408,412,417],{"type":43,"tag":93,"props":409,"children":410},{"style":100},[411],{"type":48,"value":8},{"type":43,"tag":93,"props":413,"children":414},{"style":106},[415],{"type":48,"value":416}," redis",{"type":43,"tag":93,"props":418,"children":419},{"style":106},[420],{"type":48,"value":421}," list\n",{"type":43,"tag":93,"props":423,"children":424},{"class":95,"line":30},[425,429,433,438,443,448,453,458,463],{"type":43,"tag":93,"props":426,"children":427},{"style":100},[428],{"type":48,"value":8},{"type":43,"tag":93,"props":430,"children":431},{"style":106},[432],{"type":48,"value":416},{"type":43,"tag":93,"props":434,"children":435},{"style":106},[436],{"type":48,"value":437}," get",{"type":43,"tag":93,"props":439,"children":440},{"style":106},[441],{"type":48,"value":442}," --db-id",{"type":43,"tag":93,"props":444,"children":445},{"style":243},[446],{"type":48,"value":447}," \u003C",{"type":43,"tag":93,"props":449,"children":450},{"style":106},[451],{"type":48,"value":452},"i",{"type":43,"tag":93,"props":454,"children":455},{"style":237},[456],{"type":48,"value":457},"d",{"type":43,"tag":93,"props":459,"children":460},{"style":243},[461],{"type":48,"value":462},">",{"type":43,"tag":93,"props":464,"children":465},{"style":237},[466],{"type":48,"value":467}," [--hide-credentials]\n",{"type":43,"tag":93,"props":469,"children":471},{"class":95,"line":470},3,[472,476,480,485,490,494,499,504,508,513,517,522,527,531,536,541,546,551,555,559,564],{"type":43,"tag":93,"props":473,"children":474},{"style":100},[475],{"type":48,"value":8},{"type":43,"tag":93,"props":477,"children":478},{"style":106},[479],{"type":48,"value":416},{"type":43,"tag":93,"props":481,"children":482},{"style":106},[483],{"type":48,"value":484}," create",{"type":43,"tag":93,"props":486,"children":487},{"style":106},[488],{"type":48,"value":489}," --name",{"type":43,"tag":93,"props":491,"children":492},{"style":243},[493],{"type":48,"value":447},{"type":43,"tag":93,"props":495,"children":496},{"style":106},[497],{"type":48,"value":498},"nam",{"type":43,"tag":93,"props":500,"children":501},{"style":237},[502],{"type":48,"value":503},"e",{"type":43,"tag":93,"props":505,"children":506},{"style":243},[507],{"type":48,"value":462},{"type":43,"tag":93,"props":509,"children":510},{"style":106},[511],{"type":48,"value":512}," --region",{"type":43,"tag":93,"props":514,"children":515},{"style":243},[516],{"type":48,"value":447},{"type":43,"tag":93,"props":518,"children":519},{"style":106},[520],{"type":48,"value":521},"regio",{"type":43,"tag":93,"props":523,"children":524},{"style":237},[525],{"type":48,"value":526},"n",{"type":43,"tag":93,"props":528,"children":529},{"style":243},[530],{"type":48,"value":462},{"type":43,"tag":93,"props":532,"children":533},{"style":237},[534],{"type":48,"value":535}," [--read-regions ",{"type":43,"tag":93,"props":537,"children":538},{"style":243},[539],{"type":48,"value":540},"\u003C",{"type":43,"tag":93,"props":542,"children":543},{"style":106},[544],{"type":48,"value":545},"r",{"type":43,"tag":93,"props":547,"children":548},{"style":243},[549],{"type":48,"value":550},"1>",{"type":43,"tag":93,"props":552,"children":553},{"style":243},[554],{"type":48,"value":447},{"type":43,"tag":93,"props":556,"children":557},{"style":106},[558],{"type":48,"value":545},{"type":43,"tag":93,"props":560,"children":561},{"style":243},[562],{"type":48,"value":563},"2>",{"type":43,"tag":93,"props":565,"children":566},{"style":106},[567],{"type":48,"value":568},"]\n",{"type":43,"tag":93,"props":570,"children":572},{"class":95,"line":571},4,[573,577,581,586,590,594,598,602,606],{"type":43,"tag":93,"props":574,"children":575},{"style":100},[576],{"type":48,"value":8},{"type":43,"tag":93,"props":578,"children":579},{"style":106},[580],{"type":48,"value":416},{"type":43,"tag":93,"props":582,"children":583},{"style":106},[584],{"type":48,"value":585}," delete",{"type":43,"tag":93,"props":587,"children":588},{"style":106},[589],{"type":48,"value":442},{"type":43,"tag":93,"props":591,"children":592},{"style":243},[593],{"type":48,"value":447},{"type":43,"tag":93,"props":595,"children":596},{"style":106},[597],{"type":48,"value":452},{"type":43,"tag":93,"props":599,"children":600},{"style":237},[601],{"type":48,"value":457},{"type":43,"tag":93,"props":603,"children":604},{"style":243},[605],{"type":48,"value":462},{"type":43,"tag":93,"props":607,"children":608},{"style":237},[609],{"type":48,"value":610}," [--dry-run]\n",{"type":43,"tag":93,"props":612,"children":614},{"class":95,"line":613},5,[615,619,623,628,632,636,640,644,648,652,656,661,665],{"type":43,"tag":93,"props":616,"children":617},{"style":100},[618],{"type":48,"value":8},{"type":43,"tag":93,"props":620,"children":621},{"style":106},[622],{"type":48,"value":416},{"type":43,"tag":93,"props":624,"children":625},{"style":106},[626],{"type":48,"value":627}," rename",{"type":43,"tag":93,"props":629,"children":630},{"style":106},[631],{"type":48,"value":442},{"type":43,"tag":93,"props":633,"children":634},{"style":243},[635],{"type":48,"value":447},{"type":43,"tag":93,"props":637,"children":638},{"style":106},[639],{"type":48,"value":452},{"type":43,"tag":93,"props":641,"children":642},{"style":237},[643],{"type":48,"value":457},{"type":43,"tag":93,"props":645,"children":646},{"style":243},[647],{"type":48,"value":462},{"type":43,"tag":93,"props":649,"children":650},{"style":106},[651],{"type":48,"value":489},{"type":43,"tag":93,"props":653,"children":654},{"style":243},[655],{"type":48,"value":447},{"type":43,"tag":93,"props":657,"children":658},{"style":106},[659],{"type":48,"value":660},"new-nam",{"type":43,"tag":93,"props":662,"children":663},{"style":237},[664],{"type":48,"value":503},{"type":43,"tag":93,"props":666,"children":667},{"style":243},[668],{"type":48,"value":669},">\n",{"type":43,"tag":93,"props":671,"children":673},{"class":95,"line":672},6,[674,678,682,687,691,695,699,703],{"type":43,"tag":93,"props":675,"children":676},{"style":100},[677],{"type":48,"value":8},{"type":43,"tag":93,"props":679,"children":680},{"style":106},[681],{"type":48,"value":416},{"type":43,"tag":93,"props":683,"children":684},{"style":106},[685],{"type":48,"value":686}," reset-password",{"type":43,"tag":93,"props":688,"children":689},{"style":106},[690],{"type":48,"value":442},{"type":43,"tag":93,"props":692,"children":693},{"style":243},[694],{"type":48,"value":447},{"type":43,"tag":93,"props":696,"children":697},{"style":106},[698],{"type":48,"value":452},{"type":43,"tag":93,"props":700,"children":701},{"style":237},[702],{"type":48,"value":457},{"type":43,"tag":93,"props":704,"children":705},{"style":243},[706],{"type":48,"value":669},{"type":43,"tag":93,"props":708,"children":710},{"class":95,"line":709},7,[711,715,719,724,728,732,736,740],{"type":43,"tag":93,"props":712,"children":713},{"style":100},[714],{"type":48,"value":8},{"type":43,"tag":93,"props":716,"children":717},{"style":106},[718],{"type":48,"value":416},{"type":43,"tag":93,"props":720,"children":721},{"style":106},[722],{"type":48,"value":723}," stats",{"type":43,"tag":93,"props":725,"children":726},{"style":106},[727],{"type":48,"value":442},{"type":43,"tag":93,"props":729,"children":730},{"style":243},[731],{"type":48,"value":447},{"type":43,"tag":93,"props":733,"children":734},{"style":106},[735],{"type":48,"value":452},{"type":43,"tag":93,"props":737,"children":738},{"style":237},[739],{"type":48,"value":457},{"type":43,"tag":93,"props":741,"children":742},{"style":243},[743],{"type":48,"value":669},{"type":43,"tag":93,"props":745,"children":747},{"class":95,"line":746},8,[748],{"type":43,"tag":93,"props":749,"children":751},{"emptyLinePlaceholder":750},true,[752],{"type":48,"value":753},"\n",{"type":43,"tag":93,"props":755,"children":757},{"class":95,"line":756},9,[758,762,766,771,775,779,783,787],{"type":43,"tag":93,"props":759,"children":760},{"style":100},[761],{"type":48,"value":8},{"type":43,"tag":93,"props":763,"children":764},{"style":106},[765],{"type":48,"value":416},{"type":43,"tag":93,"props":767,"children":768},{"style":106},[769],{"type":48,"value":770}," enable-tls",{"type":43,"tag":93,"props":772,"children":773},{"style":106},[774],{"type":48,"value":442},{"type":43,"tag":93,"props":776,"children":777},{"style":243},[778],{"type":48,"value":447},{"type":43,"tag":93,"props":780,"children":781},{"style":106},[782],{"type":48,"value":452},{"type":43,"tag":93,"props":784,"children":785},{"style":237},[786],{"type":48,"value":457},{"type":43,"tag":93,"props":788,"children":789},{"style":243},[790],{"type":48,"value":669},{"type":43,"tag":93,"props":792,"children":794},{"class":95,"line":793},10,[795,799,803,808,812,816,820,824],{"type":43,"tag":93,"props":796,"children":797},{"style":100},[798],{"type":48,"value":8},{"type":43,"tag":93,"props":800,"children":801},{"style":106},[802],{"type":48,"value":416},{"type":43,"tag":93,"props":804,"children":805},{"style":106},[806],{"type":48,"value":807}," {enable,disable}-eviction",{"type":43,"tag":93,"props":809,"children":810},{"style":106},[811],{"type":48,"value":442},{"type":43,"tag":93,"props":813,"children":814},{"style":243},[815],{"type":48,"value":447},{"type":43,"tag":93,"props":817,"children":818},{"style":106},[819],{"type":48,"value":452},{"type":43,"tag":93,"props":821,"children":822},{"style":237},[823],{"type":48,"value":457},{"type":43,"tag":93,"props":825,"children":826},{"style":243},[827],{"type":48,"value":669},{"type":43,"tag":93,"props":829,"children":831},{"class":95,"line":830},11,[832,836,840,845,849,853,857,861],{"type":43,"tag":93,"props":833,"children":834},{"style":100},[835],{"type":48,"value":8},{"type":43,"tag":93,"props":837,"children":838},{"style":106},[839],{"type":48,"value":416},{"type":43,"tag":93,"props":841,"children":842},{"style":106},[843],{"type":48,"value":844}," {enable,disable}-autoupgrade",{"type":43,"tag":93,"props":846,"children":847},{"style":106},[848],{"type":48,"value":442},{"type":43,"tag":93,"props":850,"children":851},{"style":243},[852],{"type":48,"value":447},{"type":43,"tag":93,"props":854,"children":855},{"style":106},[856],{"type":48,"value":452},{"type":43,"tag":93,"props":858,"children":859},{"style":237},[860],{"type":48,"value":457},{"type":43,"tag":93,"props":862,"children":863},{"style":243},[864],{"type":48,"value":669},{"type":43,"tag":93,"props":866,"children":868},{"class":95,"line":867},12,[869,873,877,882,886,890,894,898,902,907,911,916,921,926,930,935,939,944],{"type":43,"tag":93,"props":870,"children":871},{"style":100},[872],{"type":48,"value":8},{"type":43,"tag":93,"props":874,"children":875},{"style":106},[876],{"type":48,"value":416},{"type":43,"tag":93,"props":878,"children":879},{"style":106},[880],{"type":48,"value":881}," change-plan",{"type":43,"tag":93,"props":883,"children":884},{"style":106},[885],{"type":48,"value":442},{"type":43,"tag":93,"props":887,"children":888},{"style":243},[889],{"type":48,"value":447},{"type":43,"tag":93,"props":891,"children":892},{"style":106},[893],{"type":48,"value":452},{"type":43,"tag":93,"props":895,"children":896},{"style":237},[897],{"type":48,"value":457},{"type":43,"tag":93,"props":899,"children":900},{"style":243},[901],{"type":48,"value":462},{"type":43,"tag":93,"props":903,"children":904},{"style":106},[905],{"type":48,"value":906}," --plan",{"type":43,"tag":93,"props":908,"children":909},{"style":243},[910],{"type":48,"value":447},{"type":43,"tag":93,"props":912,"children":913},{"style":106},[914],{"type":48,"value":915},"free",{"type":43,"tag":93,"props":917,"children":918},{"style":243},[919],{"type":48,"value":920},"|",{"type":43,"tag":93,"props":922,"children":923},{"style":100},[924],{"type":48,"value":925},"payg",{"type":43,"tag":93,"props":927,"children":928},{"style":243},[929],{"type":48,"value":920},{"type":43,"tag":93,"props":931,"children":932},{"style":100},[933],{"type":48,"value":934},"pro",{"type":43,"tag":93,"props":936,"children":937},{"style":243},[938],{"type":48,"value":920},{"type":43,"tag":93,"props":940,"children":941},{"style":100},[942],{"type":48,"value":943},"paid",{"type":43,"tag":93,"props":945,"children":946},{"style":237},[947],{"type":48,"value":669},{"type":43,"tag":93,"props":949,"children":951},{"class":95,"line":950},13,[952,956,960,965,969,973,977,981,985,990,994,999,1004],{"type":43,"tag":93,"props":953,"children":954},{"style":100},[955],{"type":48,"value":8},{"type":43,"tag":93,"props":957,"children":958},{"style":106},[959],{"type":48,"value":416},{"type":43,"tag":93,"props":961,"children":962},{"style":106},[963],{"type":48,"value":964}," update-budget",{"type":43,"tag":93,"props":966,"children":967},{"style":106},[968],{"type":48,"value":442},{"type":43,"tag":93,"props":970,"children":971},{"style":243},[972],{"type":48,"value":447},{"type":43,"tag":93,"props":974,"children":975},{"style":106},[976],{"type":48,"value":452},{"type":43,"tag":93,"props":978,"children":979},{"style":237},[980],{"type":48,"value":457},{"type":43,"tag":93,"props":982,"children":983},{"style":243},[984],{"type":48,"value":462},{"type":43,"tag":93,"props":986,"children":987},{"style":106},[988],{"type":48,"value":989}," --budget",{"type":43,"tag":93,"props":991,"children":992},{"style":243},[993],{"type":48,"value":447},{"type":43,"tag":93,"props":995,"children":996},{"style":106},[997],{"type":48,"value":998},"cent",{"type":43,"tag":93,"props":1000,"children":1001},{"style":237},[1002],{"type":48,"value":1003},"s",{"type":43,"tag":93,"props":1005,"children":1006},{"style":243},[1007],{"type":48,"value":669},{"type":43,"tag":93,"props":1009,"children":1011},{"class":95,"line":1010},14,[1012,1016,1020,1025,1029,1033,1037,1041,1045,1050,1054,1058,1062,1066,1070],{"type":43,"tag":93,"props":1013,"children":1014},{"style":100},[1015],{"type":48,"value":8},{"type":43,"tag":93,"props":1017,"children":1018},{"style":106},[1019],{"type":48,"value":416},{"type":43,"tag":93,"props":1021,"children":1022},{"style":106},[1023],{"type":48,"value":1024}," update-regions",{"type":43,"tag":93,"props":1026,"children":1027},{"style":106},[1028],{"type":48,"value":442},{"type":43,"tag":93,"props":1030,"children":1031},{"style":243},[1032],{"type":48,"value":447},{"type":43,"tag":93,"props":1034,"children":1035},{"style":106},[1036],{"type":48,"value":452},{"type":43,"tag":93,"props":1038,"children":1039},{"style":237},[1040],{"type":48,"value":457},{"type":43,"tag":93,"props":1042,"children":1043},{"style":243},[1044],{"type":48,"value":462},{"type":43,"tag":93,"props":1046,"children":1047},{"style":106},[1048],{"type":48,"value":1049}," --read-regions",{"type":43,"tag":93,"props":1051,"children":1052},{"style":243},[1053],{"type":48,"value":447},{"type":43,"tag":93,"props":1055,"children":1056},{"style":106},[1057],{"type":48,"value":545},{"type":43,"tag":93,"props":1059,"children":1060},{"style":243},[1061],{"type":48,"value":550},{"type":43,"tag":93,"props":1063,"children":1064},{"style":243},[1065],{"type":48,"value":447},{"type":43,"tag":93,"props":1067,"children":1068},{"style":106},[1069],{"type":48,"value":545},{"type":43,"tag":93,"props":1071,"children":1072},{"style":243},[1073],{"type":48,"value":1074},"2>\n",{"type":43,"tag":93,"props":1076,"children":1077},{"class":95,"line":26},[1078,1082,1086,1091,1095,1099,1103,1107,1111,1116,1120,1124,1128],{"type":43,"tag":93,"props":1079,"children":1080},{"style":100},[1081],{"type":48,"value":8},{"type":43,"tag":93,"props":1083,"children":1084},{"style":106},[1085],{"type":48,"value":416},{"type":43,"tag":93,"props":1087,"children":1088},{"style":106},[1089],{"type":48,"value":1090}," move-to-team",{"type":43,"tag":93,"props":1092,"children":1093},{"style":106},[1094],{"type":48,"value":442},{"type":43,"tag":93,"props":1096,"children":1097},{"style":243},[1098],{"type":48,"value":447},{"type":43,"tag":93,"props":1100,"children":1101},{"style":106},[1102],{"type":48,"value":452},{"type":43,"tag":93,"props":1104,"children":1105},{"style":237},[1106],{"type":48,"value":457},{"type":43,"tag":93,"props":1108,"children":1109},{"style":243},[1110],{"type":48,"value":462},{"type":43,"tag":93,"props":1112,"children":1113},{"style":106},[1114],{"type":48,"value":1115}," --team-id",{"type":43,"tag":93,"props":1117,"children":1118},{"style":243},[1119],{"type":48,"value":447},{"type":43,"tag":93,"props":1121,"children":1122},{"style":106},[1123],{"type":48,"value":452},{"type":43,"tag":93,"props":1125,"children":1126},{"style":237},[1127],{"type":48,"value":457},{"type":43,"tag":93,"props":1129,"children":1130},{"style":243},[1131],{"type":48,"value":669},{"type":43,"tag":44,"props":1133,"children":1134},{},[1135,1137,1143,1145,1151,1152,1158,1159,1165,1166,1172,1173,1179,1180,1186,1187,1193,1194,1200,1201,1207,1208,1214,1215,1221,1222,1228,1229,1235,1237,1243,1244,1250,1251,1257,1258,1264],{"type":48,"value":1136},"Regions — AWS: ",{"type":43,"tag":51,"props":1138,"children":1140},{"className":1139},[],[1141],{"type":48,"value":1142},"us-east-1",{"type":48,"value":1144},", ",{"type":43,"tag":51,"props":1146,"children":1148},{"className":1147},[],[1149],{"type":48,"value":1150},"us-east-2",{"type":48,"value":1144},{"type":43,"tag":51,"props":1153,"children":1155},{"className":1154},[],[1156],{"type":48,"value":1157},"us-west-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1160,"children":1162},{"className":1161},[],[1163],{"type":48,"value":1164},"us-west-2",{"type":48,"value":1144},{"type":43,"tag":51,"props":1167,"children":1169},{"className":1168},[],[1170],{"type":48,"value":1171},"ca-central-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1174,"children":1176},{"className":1175},[],[1177],{"type":48,"value":1178},"eu-central-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":48,"value":1185},"eu-west-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1188,"children":1190},{"className":1189},[],[1191],{"type":48,"value":1192},"eu-west-2",{"type":48,"value":1144},{"type":43,"tag":51,"props":1195,"children":1197},{"className":1196},[],[1198],{"type":48,"value":1199},"sa-east-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1202,"children":1204},{"className":1203},[],[1205],{"type":48,"value":1206},"ap-south-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1209,"children":1211},{"className":1210},[],[1212],{"type":48,"value":1213},"ap-northeast-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1216,"children":1218},{"className":1217},[],[1219],{"type":48,"value":1220},"ap-southeast-1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1223,"children":1225},{"className":1224},[],[1226],{"type":48,"value":1227},"ap-southeast-2",{"type":48,"value":1144},{"type":43,"tag":51,"props":1230,"children":1232},{"className":1231},[],[1233],{"type":48,"value":1234},"af-south-1",{"type":48,"value":1236},". GCP: ",{"type":43,"tag":51,"props":1238,"children":1240},{"className":1239},[],[1241],{"type":48,"value":1242},"us-central1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1245,"children":1247},{"className":1246},[],[1248],{"type":48,"value":1249},"us-east4",{"type":48,"value":1144},{"type":43,"tag":51,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":48,"value":1256},"europe-west1",{"type":48,"value":1144},{"type":43,"tag":51,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":48,"value":1263},"asia-northeast1",{"type":48,"value":73},{"type":43,"tag":1266,"props":1267,"children":1269},"h3",{"id":1268},"redis-backups",[1270],{"type":48,"value":1271},"Redis backups",{"type":43,"tag":82,"props":1273,"children":1275},{"className":84,"code":1274,"language":86,"meta":87,"style":87},"upstash redis backup list --db-id \u003Cid>\nupstash redis backup create --db-id \u003Cid> --name \u003Cname>\nupstash redis backup delete --db-id \u003Cid> --backup-id \u003Cid> [--dry-run]\nupstash redis backup restore --db-id \u003Cid> --backup-id \u003Cid>\nupstash redis backup {enable,disable}-daily --db-id \u003Cid>\n",[1276],{"type":43,"tag":51,"props":1277,"children":1278},{"__ignoreMap":87},[1279,1320,1379,1443,1503],{"type":43,"tag":93,"props":1280,"children":1281},{"class":95,"line":96},[1282,1286,1290,1295,1300,1304,1308,1312,1316],{"type":43,"tag":93,"props":1283,"children":1284},{"style":100},[1285],{"type":48,"value":8},{"type":43,"tag":93,"props":1287,"children":1288},{"style":106},[1289],{"type":48,"value":416},{"type":43,"tag":93,"props":1291,"children":1292},{"style":106},[1293],{"type":48,"value":1294}," backup",{"type":43,"tag":93,"props":1296,"children":1297},{"style":106},[1298],{"type":48,"value":1299}," list",{"type":43,"tag":93,"props":1301,"children":1302},{"style":106},[1303],{"type":48,"value":442},{"type":43,"tag":93,"props":1305,"children":1306},{"style":243},[1307],{"type":48,"value":447},{"type":43,"tag":93,"props":1309,"children":1310},{"style":106},[1311],{"type":48,"value":452},{"type":43,"tag":93,"props":1313,"children":1314},{"style":237},[1315],{"type":48,"value":457},{"type":43,"tag":93,"props":1317,"children":1318},{"style":243},[1319],{"type":48,"value":669},{"type":43,"tag":93,"props":1321,"children":1322},{"class":95,"line":30},[1323,1327,1331,1335,1339,1343,1347,1351,1355,1359,1363,1367,1371,1375],{"type":43,"tag":93,"props":1324,"children":1325},{"style":100},[1326],{"type":48,"value":8},{"type":43,"tag":93,"props":1328,"children":1329},{"style":106},[1330],{"type":48,"value":416},{"type":43,"tag":93,"props":1332,"children":1333},{"style":106},[1334],{"type":48,"value":1294},{"type":43,"tag":93,"props":1336,"children":1337},{"style":106},[1338],{"type":48,"value":484},{"type":43,"tag":93,"props":1340,"children":1341},{"style":106},[1342],{"type":48,"value":442},{"type":43,"tag":93,"props":1344,"children":1345},{"style":243},[1346],{"type":48,"value":447},{"type":43,"tag":93,"props":1348,"children":1349},{"style":106},[1350],{"type":48,"value":452},{"type":43,"tag":93,"props":1352,"children":1353},{"style":237},[1354],{"type":48,"value":457},{"type":43,"tag":93,"props":1356,"children":1357},{"style":243},[1358],{"type":48,"value":462},{"type":43,"tag":93,"props":1360,"children":1361},{"style":106},[1362],{"type":48,"value":489},{"type":43,"tag":93,"props":1364,"children":1365},{"style":243},[1366],{"type":48,"value":447},{"type":43,"tag":93,"props":1368,"children":1369},{"style":106},[1370],{"type":48,"value":498},{"type":43,"tag":93,"props":1372,"children":1373},{"style":237},[1374],{"type":48,"value":503},{"type":43,"tag":93,"props":1376,"children":1377},{"style":243},[1378],{"type":48,"value":669},{"type":43,"tag":93,"props":1380,"children":1381},{"class":95,"line":470},[1382,1386,1390,1394,1398,1402,1406,1410,1414,1418,1423,1427,1431,1435,1439],{"type":43,"tag":93,"props":1383,"children":1384},{"style":100},[1385],{"type":48,"value":8},{"type":43,"tag":93,"props":1387,"children":1388},{"style":106},[1389],{"type":48,"value":416},{"type":43,"tag":93,"props":1391,"children":1392},{"style":106},[1393],{"type":48,"value":1294},{"type":43,"tag":93,"props":1395,"children":1396},{"style":106},[1397],{"type":48,"value":585},{"type":43,"tag":93,"props":1399,"children":1400},{"style":106},[1401],{"type":48,"value":442},{"type":43,"tag":93,"props":1403,"children":1404},{"style":243},[1405],{"type":48,"value":447},{"type":43,"tag":93,"props":1407,"children":1408},{"style":106},[1409],{"type":48,"value":452},{"type":43,"tag":93,"props":1411,"children":1412},{"style":237},[1413],{"type":48,"value":457},{"type":43,"tag":93,"props":1415,"children":1416},{"style":243},[1417],{"type":48,"value":462},{"type":43,"tag":93,"props":1419,"children":1420},{"style":106},[1421],{"type":48,"value":1422}," --backup-id",{"type":43,"tag":93,"props":1424,"children":1425},{"style":243},[1426],{"type":48,"value":447},{"type":43,"tag":93,"props":1428,"children":1429},{"style":106},[1430],{"type":48,"value":452},{"type":43,"tag":93,"props":1432,"children":1433},{"style":237},[1434],{"type":48,"value":457},{"type":43,"tag":93,"props":1436,"children":1437},{"style":243},[1438],{"type":48,"value":462},{"type":43,"tag":93,"props":1440,"children":1441},{"style":237},[1442],{"type":48,"value":610},{"type":43,"tag":93,"props":1444,"children":1445},{"class":95,"line":571},[1446,1450,1454,1458,1463,1467,1471,1475,1479,1483,1487,1491,1495,1499],{"type":43,"tag":93,"props":1447,"children":1448},{"style":100},[1449],{"type":48,"value":8},{"type":43,"tag":93,"props":1451,"children":1452},{"style":106},[1453],{"type":48,"value":416},{"type":43,"tag":93,"props":1455,"children":1456},{"style":106},[1457],{"type":48,"value":1294},{"type":43,"tag":93,"props":1459,"children":1460},{"style":106},[1461],{"type":48,"value":1462}," restore",{"type":43,"tag":93,"props":1464,"children":1465},{"style":106},[1466],{"type":48,"value":442},{"type":43,"tag":93,"props":1468,"children":1469},{"style":243},[1470],{"type":48,"value":447},{"type":43,"tag":93,"props":1472,"children":1473},{"style":106},[1474],{"type":48,"value":452},{"type":43,"tag":93,"props":1476,"children":1477},{"style":237},[1478],{"type":48,"value":457},{"type":43,"tag":93,"props":1480,"children":1481},{"style":243},[1482],{"type":48,"value":462},{"type":43,"tag":93,"props":1484,"children":1485},{"style":106},[1486],{"type":48,"value":1422},{"type":43,"tag":93,"props":1488,"children":1489},{"style":243},[1490],{"type":48,"value":447},{"type":43,"tag":93,"props":1492,"children":1493},{"style":106},[1494],{"type":48,"value":452},{"type":43,"tag":93,"props":1496,"children":1497},{"style":237},[1498],{"type":48,"value":457},{"type":43,"tag":93,"props":1500,"children":1501},{"style":243},[1502],{"type":48,"value":669},{"type":43,"tag":93,"props":1504,"children":1505},{"class":95,"line":613},[1506,1510,1514,1518,1523,1527,1531,1535,1539],{"type":43,"tag":93,"props":1507,"children":1508},{"style":100},[1509],{"type":48,"value":8},{"type":43,"tag":93,"props":1511,"children":1512},{"style":106},[1513],{"type":48,"value":416},{"type":43,"tag":93,"props":1515,"children":1516},{"style":106},[1517],{"type":48,"value":1294},{"type":43,"tag":93,"props":1519,"children":1520},{"style":106},[1521],{"type":48,"value":1522}," {enable,disable}-daily",{"type":43,"tag":93,"props":1524,"children":1525},{"style":106},[1526],{"type":48,"value":442},{"type":43,"tag":93,"props":1528,"children":1529},{"style":243},[1530],{"type":48,"value":447},{"type":43,"tag":93,"props":1532,"children":1533},{"style":106},[1534],{"type":48,"value":452},{"type":43,"tag":93,"props":1536,"children":1537},{"style":237},[1538],{"type":48,"value":457},{"type":43,"tag":93,"props":1540,"children":1541},{"style":243},[1542],{"type":48,"value":669},{"type":43,"tag":1266,"props":1544,"children":1546},{"id":1545},"redis-exec-rest-not-the-developer-api-key",[1547],{"type":48,"value":1548},"Redis exec (REST, not the Developer API key)",{"type":43,"tag":82,"props":1550,"children":1552},{"className":84,"code":1551,"language":86,"meta":87,"style":87},"upstash redis exec --db-url \u003Curl> --db-token \u003Ctoken> SET key value\nupstash redis exec --db-url \u003Curl> --db-token \u003Ctoken> --json '[\"SET\",\"key\",\"value\"]'\n",[1553],{"type":43,"tag":51,"props":1554,"children":1555},{"__ignoreMap":87},[1556,1632],{"type":43,"tag":93,"props":1557,"children":1558},{"class":95,"line":96},[1559,1563,1567,1572,1577,1581,1586,1591,1595,1600,1604,1609,1613,1617,1622,1627],{"type":43,"tag":93,"props":1560,"children":1561},{"style":100},[1562],{"type":48,"value":8},{"type":43,"tag":93,"props":1564,"children":1565},{"style":106},[1566],{"type":48,"value":416},{"type":43,"tag":93,"props":1568,"children":1569},{"style":106},[1570],{"type":48,"value":1571}," exec",{"type":43,"tag":93,"props":1573,"children":1574},{"style":106},[1575],{"type":48,"value":1576}," --db-url",{"type":43,"tag":93,"props":1578,"children":1579},{"style":243},[1580],{"type":48,"value":447},{"type":43,"tag":93,"props":1582,"children":1583},{"style":106},[1584],{"type":48,"value":1585},"ur",{"type":43,"tag":93,"props":1587,"children":1588},{"style":237},[1589],{"type":48,"value":1590},"l",{"type":43,"tag":93,"props":1592,"children":1593},{"style":243},[1594],{"type":48,"value":462},{"type":43,"tag":93,"props":1596,"children":1597},{"style":106},[1598],{"type":48,"value":1599}," --db-token",{"type":43,"tag":93,"props":1601,"children":1602},{"style":243},[1603],{"type":48,"value":447},{"type":43,"tag":93,"props":1605,"children":1606},{"style":106},[1607],{"type":48,"value":1608},"toke",{"type":43,"tag":93,"props":1610,"children":1611},{"style":237},[1612],{"type":48,"value":526},{"type":43,"tag":93,"props":1614,"children":1615},{"style":243},[1616],{"type":48,"value":462},{"type":43,"tag":93,"props":1618,"children":1619},{"style":106},[1620],{"type":48,"value":1621}," SET",{"type":43,"tag":93,"props":1623,"children":1624},{"style":106},[1625],{"type":48,"value":1626}," key",{"type":43,"tag":93,"props":1628,"children":1629},{"style":106},[1630],{"type":48,"value":1631}," value\n",{"type":43,"tag":93,"props":1633,"children":1634},{"class":95,"line":30},[1635,1639,1643,1647,1651,1655,1659,1663,1667,1671,1675,1679,1683,1687,1692,1697,1702],{"type":43,"tag":93,"props":1636,"children":1637},{"style":100},[1638],{"type":48,"value":8},{"type":43,"tag":93,"props":1640,"children":1641},{"style":106},[1642],{"type":48,"value":416},{"type":43,"tag":93,"props":1644,"children":1645},{"style":106},[1646],{"type":48,"value":1571},{"type":43,"tag":93,"props":1648,"children":1649},{"style":106},[1650],{"type":48,"value":1576},{"type":43,"tag":93,"props":1652,"children":1653},{"style":243},[1654],{"type":48,"value":447},{"type":43,"tag":93,"props":1656,"children":1657},{"style":106},[1658],{"type":48,"value":1585},{"type":43,"tag":93,"props":1660,"children":1661},{"style":237},[1662],{"type":48,"value":1590},{"type":43,"tag":93,"props":1664,"children":1665},{"style":243},[1666],{"type":48,"value":462},{"type":43,"tag":93,"props":1668,"children":1669},{"style":106},[1670],{"type":48,"value":1599},{"type":43,"tag":93,"props":1672,"children":1673},{"style":243},[1674],{"type":48,"value":447},{"type":43,"tag":93,"props":1676,"children":1677},{"style":106},[1678],{"type":48,"value":1608},{"type":43,"tag":93,"props":1680,"children":1681},{"style":237},[1682],{"type":48,"value":526},{"type":43,"tag":93,"props":1684,"children":1685},{"style":243},[1686],{"type":48,"value":462},{"type":43,"tag":93,"props":1688,"children":1689},{"style":106},[1690],{"type":48,"value":1691}," --json",{"type":43,"tag":93,"props":1693,"children":1694},{"style":243},[1695],{"type":48,"value":1696}," '",{"type":43,"tag":93,"props":1698,"children":1699},{"style":106},[1700],{"type":48,"value":1701},"[\"SET\",\"key\",\"value\"]",{"type":43,"tag":93,"props":1703,"children":1704},{"style":243},[1705],{"type":48,"value":1706},"'\n",{"type":43,"tag":44,"props":1708,"children":1709},{},[1710,1716,1717,1723,1725,1731,1732,1738,1740,1746,1748,1754,1756,1762],{"type":43,"tag":51,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":48,"value":1715},"--db-url",{"type":48,"value":195},{"type":43,"tag":51,"props":1718,"children":1720},{"className":1719},[],[1721],{"type":48,"value":1722},"--db-token",{"type":48,"value":1724}," fall back to ",{"type":43,"tag":51,"props":1726,"children":1728},{"className":1727},[],[1729],{"type":48,"value":1730},"UPSTASH_REDIS_REST_URL",{"type":48,"value":195},{"type":43,"tag":51,"props":1733,"children":1735},{"className":1734},[],[1736],{"type":48,"value":1737},"UPSTASH_REDIS_REST_TOKEN",{"type":48,"value":1739},". Get both from ",{"type":43,"tag":51,"props":1741,"children":1743},{"className":1742},[],[1744],{"type":48,"value":1745},"endpoint",{"type":48,"value":1747}," and ",{"type":43,"tag":51,"props":1749,"children":1751},{"className":1750},[],[1752],{"type":48,"value":1753},"rest_token",{"type":48,"value":1755}," in ",{"type":43,"tag":51,"props":1757,"children":1759},{"className":1758},[],[1760],{"type":48,"value":1761},"upstash redis get --db-id \u003Cid>",{"type":48,"value":73},{"type":43,"tag":75,"props":1764,"children":1766},{"id":1765},"team",[1767],{"type":48,"value":393},{"type":43,"tag":82,"props":1769,"children":1771},{"className":84,"code":1770,"language":86,"meta":87,"style":87},"upstash team list\nupstash team create --name \u003Cname> [--copy-cc]\nupstash team delete --team-id \u003Cid> [--dry-run]\nupstash team members --team-id \u003Cid>\nupstash team add-member --team-id \u003Cid> --member-email \u003Cemail> --role \u003Cadmin|dev|finance>\nupstash team remove-member --team-id \u003Cid> --member-email \u003Cemail> [--dry-run]\n",[1772],{"type":43,"tag":51,"props":1773,"children":1774},{"__ignoreMap":87},[1775,1791,1831,1870,1906,2000],{"type":43,"tag":93,"props":1776,"children":1777},{"class":95,"line":96},[1778,1782,1787],{"type":43,"tag":93,"props":1779,"children":1780},{"style":100},[1781],{"type":48,"value":8},{"type":43,"tag":93,"props":1783,"children":1784},{"style":106},[1785],{"type":48,"value":1786}," team",{"type":43,"tag":93,"props":1788,"children":1789},{"style":106},[1790],{"type":48,"value":421},{"type":43,"tag":93,"props":1792,"children":1793},{"class":95,"line":30},[1794,1798,1802,1806,1810,1814,1818,1822,1826],{"type":43,"tag":93,"props":1795,"children":1796},{"style":100},[1797],{"type":48,"value":8},{"type":43,"tag":93,"props":1799,"children":1800},{"style":106},[1801],{"type":48,"value":1786},{"type":43,"tag":93,"props":1803,"children":1804},{"style":106},[1805],{"type":48,"value":484},{"type":43,"tag":93,"props":1807,"children":1808},{"style":106},[1809],{"type":48,"value":489},{"type":43,"tag":93,"props":1811,"children":1812},{"style":243},[1813],{"type":48,"value":447},{"type":43,"tag":93,"props":1815,"children":1816},{"style":106},[1817],{"type":48,"value":498},{"type":43,"tag":93,"props":1819,"children":1820},{"style":237},[1821],{"type":48,"value":503},{"type":43,"tag":93,"props":1823,"children":1824},{"style":243},[1825],{"type":48,"value":462},{"type":43,"tag":93,"props":1827,"children":1828},{"style":237},[1829],{"type":48,"value":1830}," [--copy-cc]\n",{"type":43,"tag":93,"props":1832,"children":1833},{"class":95,"line":470},[1834,1838,1842,1846,1850,1854,1858,1862,1866],{"type":43,"tag":93,"props":1835,"children":1836},{"style":100},[1837],{"type":48,"value":8},{"type":43,"tag":93,"props":1839,"children":1840},{"style":106},[1841],{"type":48,"value":1786},{"type":43,"tag":93,"props":1843,"children":1844},{"style":106},[1845],{"type":48,"value":585},{"type":43,"tag":93,"props":1847,"children":1848},{"style":106},[1849],{"type":48,"value":1115},{"type":43,"tag":93,"props":1851,"children":1852},{"style":243},[1853],{"type":48,"value":447},{"type":43,"tag":93,"props":1855,"children":1856},{"style":106},[1857],{"type":48,"value":452},{"type":43,"tag":93,"props":1859,"children":1860},{"style":237},[1861],{"type":48,"value":457},{"type":43,"tag":93,"props":1863,"children":1864},{"style":243},[1865],{"type":48,"value":462},{"type":43,"tag":93,"props":1867,"children":1868},{"style":237},[1869],{"type":48,"value":610},{"type":43,"tag":93,"props":1871,"children":1872},{"class":95,"line":571},[1873,1877,1881,1886,1890,1894,1898,1902],{"type":43,"tag":93,"props":1874,"children":1875},{"style":100},[1876],{"type":48,"value":8},{"type":43,"tag":93,"props":1878,"children":1879},{"style":106},[1880],{"type":48,"value":1786},{"type":43,"tag":93,"props":1882,"children":1883},{"style":106},[1884],{"type":48,"value":1885}," members",{"type":43,"tag":93,"props":1887,"children":1888},{"style":106},[1889],{"type":48,"value":1115},{"type":43,"tag":93,"props":1891,"children":1892},{"style":243},[1893],{"type":48,"value":447},{"type":43,"tag":93,"props":1895,"children":1896},{"style":106},[1897],{"type":48,"value":452},{"type":43,"tag":93,"props":1899,"children":1900},{"style":237},[1901],{"type":48,"value":457},{"type":43,"tag":93,"props":1903,"children":1904},{"style":243},[1905],{"type":48,"value":669},{"type":43,"tag":93,"props":1907,"children":1908},{"class":95,"line":613},[1909,1913,1917,1922,1926,1930,1934,1938,1942,1947,1951,1956,1960,1964,1969,1973,1978,1982,1987,1991,1996],{"type":43,"tag":93,"props":1910,"children":1911},{"style":100},[1912],{"type":48,"value":8},{"type":43,"tag":93,"props":1914,"children":1915},{"style":106},[1916],{"type":48,"value":1786},{"type":43,"tag":93,"props":1918,"children":1919},{"style":106},[1920],{"type":48,"value":1921}," add-member",{"type":43,"tag":93,"props":1923,"children":1924},{"style":106},[1925],{"type":48,"value":1115},{"type":43,"tag":93,"props":1927,"children":1928},{"style":243},[1929],{"type":48,"value":447},{"type":43,"tag":93,"props":1931,"children":1932},{"style":106},[1933],{"type":48,"value":452},{"type":43,"tag":93,"props":1935,"children":1936},{"style":237},[1937],{"type":48,"value":457},{"type":43,"tag":93,"props":1939,"children":1940},{"style":243},[1941],{"type":48,"value":462},{"type":43,"tag":93,"props":1943,"children":1944},{"style":106},[1945],{"type":48,"value":1946}," --member-email",{"type":43,"tag":93,"props":1948,"children":1949},{"style":243},[1950],{"type":48,"value":447},{"type":43,"tag":93,"props":1952,"children":1953},{"style":106},[1954],{"type":48,"value":1955},"emai",{"type":43,"tag":93,"props":1957,"children":1958},{"style":237},[1959],{"type":48,"value":1590},{"type":43,"tag":93,"props":1961,"children":1962},{"style":243},[1963],{"type":48,"value":462},{"type":43,"tag":93,"props":1965,"children":1966},{"style":106},[1967],{"type":48,"value":1968}," --role",{"type":43,"tag":93,"props":1970,"children":1971},{"style":243},[1972],{"type":48,"value":447},{"type":43,"tag":93,"props":1974,"children":1975},{"style":106},[1976],{"type":48,"value":1977},"admin",{"type":43,"tag":93,"props":1979,"children":1980},{"style":243},[1981],{"type":48,"value":920},{"type":43,"tag":93,"props":1983,"children":1984},{"style":100},[1985],{"type":48,"value":1986},"dev",{"type":43,"tag":93,"props":1988,"children":1989},{"style":243},[1990],{"type":48,"value":920},{"type":43,"tag":93,"props":1992,"children":1993},{"style":100},[1994],{"type":48,"value":1995},"finance",{"type":43,"tag":93,"props":1997,"children":1998},{"style":237},[1999],{"type":48,"value":669},{"type":43,"tag":93,"props":2001,"children":2002},{"class":95,"line":672},[2003,2007,2011,2016,2020,2024,2028,2032,2036,2040,2044,2048,2052,2056],{"type":43,"tag":93,"props":2004,"children":2005},{"style":100},[2006],{"type":48,"value":8},{"type":43,"tag":93,"props":2008,"children":2009},{"style":106},[2010],{"type":48,"value":1786},{"type":43,"tag":93,"props":2012,"children":2013},{"style":106},[2014],{"type":48,"value":2015}," remove-member",{"type":43,"tag":93,"props":2017,"children":2018},{"style":106},[2019],{"type":48,"value":1115},{"type":43,"tag":93,"props":2021,"children":2022},{"style":243},[2023],{"type":48,"value":447},{"type":43,"tag":93,"props":2025,"children":2026},{"style":106},[2027],{"type":48,"value":452},{"type":43,"tag":93,"props":2029,"children":2030},{"style":237},[2031],{"type":48,"value":457},{"type":43,"tag":93,"props":2033,"children":2034},{"style":243},[2035],{"type":48,"value":462},{"type":43,"tag":93,"props":2037,"children":2038},{"style":106},[2039],{"type":48,"value":1946},{"type":43,"tag":93,"props":2041,"children":2042},{"style":243},[2043],{"type":48,"value":447},{"type":43,"tag":93,"props":2045,"children":2046},{"style":106},[2047],{"type":48,"value":1955},{"type":43,"tag":93,"props":2049,"children":2050},{"style":237},[2051],{"type":48,"value":1590},{"type":43,"tag":93,"props":2053,"children":2054},{"style":243},[2055],{"type":48,"value":462},{"type":43,"tag":93,"props":2057,"children":2058},{"style":237},[2059],{"type":48,"value":610},{"type":43,"tag":75,"props":2061,"children":2063},{"id":2062},"vector",[2064],{"type":48,"value":2065},"Vector",{"type":43,"tag":82,"props":2067,"children":2069},{"className":84,"code":2068,"language":86,"meta":87,"style":87},"upstash vector list\nupstash vector get --index-id \u003Cid>\nupstash vector create --name \u003Cname> --region \u003Cregion> --similarity-function \u003Cfn> --dimension-count \u003Cn> [--type payg] [--index-type \u003Ctype>] [--embedding-model \u003Cm>] [--sparse-embedding-model \u003Cm>]\nupstash vector delete --index-id \u003Cid> [--dry-run]\nupstash vector rename --index-id \u003Cid> --name \u003Cnew-name>\nupstash vector reset-password --index-id \u003Cid>\nupstash vector set-plan --index-id \u003Cid> --plan \u003Cfree|payg|fixed>\nupstash vector transfer --index-id \u003Cid> --target-account \u003Cid>\nupstash vector stats                             # aggregate across all indexes\nupstash vector index-stats --index-id \u003Cid> [--period \u003C1h|3h|12h|1d|3d|7d|30d>]\n",[2070],{"type":43,"tag":51,"props":2071,"children":2072},{"__ignoreMap":87},[2073,2089,2125,2299,2338,2393,2428,2497,2554,2575],{"type":43,"tag":93,"props":2074,"children":2075},{"class":95,"line":96},[2076,2080,2085],{"type":43,"tag":93,"props":2077,"children":2078},{"style":100},[2079],{"type":48,"value":8},{"type":43,"tag":93,"props":2081,"children":2082},{"style":106},[2083],{"type":48,"value":2084}," vector",{"type":43,"tag":93,"props":2086,"children":2087},{"style":106},[2088],{"type":48,"value":421},{"type":43,"tag":93,"props":2090,"children":2091},{"class":95,"line":30},[2092,2096,2100,2104,2109,2113,2117,2121],{"type":43,"tag":93,"props":2093,"children":2094},{"style":100},[2095],{"type":48,"value":8},{"type":43,"tag":93,"props":2097,"children":2098},{"style":106},[2099],{"type":48,"value":2084},{"type":43,"tag":93,"props":2101,"children":2102},{"style":106},[2103],{"type":48,"value":437},{"type":43,"tag":93,"props":2105,"children":2106},{"style":106},[2107],{"type":48,"value":2108}," --index-id",{"type":43,"tag":93,"props":2110,"children":2111},{"style":243},[2112],{"type":48,"value":447},{"type":43,"tag":93,"props":2114,"children":2115},{"style":106},[2116],{"type":48,"value":452},{"type":43,"tag":93,"props":2118,"children":2119},{"style":237},[2120],{"type":48,"value":457},{"type":43,"tag":93,"props":2122,"children":2123},{"style":243},[2124],{"type":48,"value":669},{"type":43,"tag":93,"props":2126,"children":2127},{"class":95,"line":470},[2128,2132,2136,2140,2144,2148,2152,2156,2160,2164,2168,2172,2176,2180,2185,2189,2194,2198,2202,2207,2211,2215,2219,2224,2229,2234,2238,2243,2247,2251,2256,2261,2265,2270,2274,2278,2283,2287,2291,2295],{"type":43,"tag":93,"props":2129,"children":2130},{"style":100},[2131],{"type":48,"value":8},{"type":43,"tag":93,"props":2133,"children":2134},{"style":106},[2135],{"type":48,"value":2084},{"type":43,"tag":93,"props":2137,"children":2138},{"style":106},[2139],{"type":48,"value":484},{"type":43,"tag":93,"props":2141,"children":2142},{"style":106},[2143],{"type":48,"value":489},{"type":43,"tag":93,"props":2145,"children":2146},{"style":243},[2147],{"type":48,"value":447},{"type":43,"tag":93,"props":2149,"children":2150},{"style":106},[2151],{"type":48,"value":498},{"type":43,"tag":93,"props":2153,"children":2154},{"style":237},[2155],{"type":48,"value":503},{"type":43,"tag":93,"props":2157,"children":2158},{"style":243},[2159],{"type":48,"value":462},{"type":43,"tag":93,"props":2161,"children":2162},{"style":106},[2163],{"type":48,"value":512},{"type":43,"tag":93,"props":2165,"children":2166},{"style":243},[2167],{"type":48,"value":447},{"type":43,"tag":93,"props":2169,"children":2170},{"style":106},[2171],{"type":48,"value":521},{"type":43,"tag":93,"props":2173,"children":2174},{"style":237},[2175],{"type":48,"value":526},{"type":43,"tag":93,"props":2177,"children":2178},{"style":243},[2179],{"type":48,"value":462},{"type":43,"tag":93,"props":2181,"children":2182},{"style":106},[2183],{"type":48,"value":2184}," --similarity-function",{"type":43,"tag":93,"props":2186,"children":2187},{"style":243},[2188],{"type":48,"value":447},{"type":43,"tag":93,"props":2190,"children":2191},{"style":106},[2192],{"type":48,"value":2193},"f",{"type":43,"tag":93,"props":2195,"children":2196},{"style":237},[2197],{"type":48,"value":526},{"type":43,"tag":93,"props":2199,"children":2200},{"style":243},[2201],{"type":48,"value":462},{"type":43,"tag":93,"props":2203,"children":2204},{"style":106},[2205],{"type":48,"value":2206}," --dimension-count",{"type":43,"tag":93,"props":2208,"children":2209},{"style":243},[2210],{"type":48,"value":447},{"type":43,"tag":93,"props":2212,"children":2213},{"style":237},[2214],{"type":48,"value":526},{"type":43,"tag":93,"props":2216,"children":2217},{"style":243},[2218],{"type":48,"value":462},{"type":43,"tag":93,"props":2220,"children":2221},{"style":237},[2222],{"type":48,"value":2223}," [--type ",{"type":43,"tag":93,"props":2225,"children":2226},{"style":106},[2227],{"type":48,"value":2228},"payg]",{"type":43,"tag":93,"props":2230,"children":2231},{"style":237},[2232],{"type":48,"value":2233}," [--index-type ",{"type":43,"tag":93,"props":2235,"children":2236},{"style":243},[2237],{"type":48,"value":540},{"type":43,"tag":93,"props":2239,"children":2240},{"style":106},[2241],{"type":48,"value":2242},"typ",{"type":43,"tag":93,"props":2244,"children":2245},{"style":237},[2246],{"type":48,"value":503},{"type":43,"tag":93,"props":2248,"children":2249},{"style":243},[2250],{"type":48,"value":462},{"type":43,"tag":93,"props":2252,"children":2253},{"style":106},[2254],{"type":48,"value":2255},"]",{"type":43,"tag":93,"props":2257,"children":2258},{"style":237},[2259],{"type":48,"value":2260}," [--embedding-model ",{"type":43,"tag":93,"props":2262,"children":2263},{"style":243},[2264],{"type":48,"value":540},{"type":43,"tag":93,"props":2266,"children":2267},{"style":237},[2268],{"type":48,"value":2269},"m",{"type":43,"tag":93,"props":2271,"children":2272},{"style":243},[2273],{"type":48,"value":462},{"type":43,"tag":93,"props":2275,"children":2276},{"style":106},[2277],{"type":48,"value":2255},{"type":43,"tag":93,"props":2279,"children":2280},{"style":237},[2281],{"type":48,"value":2282}," [--sparse-embedding-model ",{"type":43,"tag":93,"props":2284,"children":2285},{"style":243},[2286],{"type":48,"value":540},{"type":43,"tag":93,"props":2288,"children":2289},{"style":237},[2290],{"type":48,"value":2269},{"type":43,"tag":93,"props":2292,"children":2293},{"style":243},[2294],{"type":48,"value":462},{"type":43,"tag":93,"props":2296,"children":2297},{"style":106},[2298],{"type":48,"value":568},{"type":43,"tag":93,"props":2300,"children":2301},{"class":95,"line":571},[2302,2306,2310,2314,2318,2322,2326,2330,2334],{"type":43,"tag":93,"props":2303,"children":2304},{"style":100},[2305],{"type":48,"value":8},{"type":43,"tag":93,"props":2307,"children":2308},{"style":106},[2309],{"type":48,"value":2084},{"type":43,"tag":93,"props":2311,"children":2312},{"style":106},[2313],{"type":48,"value":585},{"type":43,"tag":93,"props":2315,"children":2316},{"style":106},[2317],{"type":48,"value":2108},{"type":43,"tag":93,"props":2319,"children":2320},{"style":243},[2321],{"type":48,"value":447},{"type":43,"tag":93,"props":2323,"children":2324},{"style":106},[2325],{"type":48,"value":452},{"type":43,"tag":93,"props":2327,"children":2328},{"style":237},[2329],{"type":48,"value":457},{"type":43,"tag":93,"props":2331,"children":2332},{"style":243},[2333],{"type":48,"value":462},{"type":43,"tag":93,"props":2335,"children":2336},{"style":237},[2337],{"type":48,"value":610},{"type":43,"tag":93,"props":2339,"children":2340},{"class":95,"line":613},[2341,2345,2349,2353,2357,2361,2365,2369,2373,2377,2381,2385,2389],{"type":43,"tag":93,"props":2342,"children":2343},{"style":100},[2344],{"type":48,"value":8},{"type":43,"tag":93,"props":2346,"children":2347},{"style":106},[2348],{"type":48,"value":2084},{"type":43,"tag":93,"props":2350,"children":2351},{"style":106},[2352],{"type":48,"value":627},{"type":43,"tag":93,"props":2354,"children":2355},{"style":106},[2356],{"type":48,"value":2108},{"type":43,"tag":93,"props":2358,"children":2359},{"style":243},[2360],{"type":48,"value":447},{"type":43,"tag":93,"props":2362,"children":2363},{"style":106},[2364],{"type":48,"value":452},{"type":43,"tag":93,"props":2366,"children":2367},{"style":237},[2368],{"type":48,"value":457},{"type":43,"tag":93,"props":2370,"children":2371},{"style":243},[2372],{"type":48,"value":462},{"type":43,"tag":93,"props":2374,"children":2375},{"style":106},[2376],{"type":48,"value":489},{"type":43,"tag":93,"props":2378,"children":2379},{"style":243},[2380],{"type":48,"value":447},{"type":43,"tag":93,"props":2382,"children":2383},{"style":106},[2384],{"type":48,"value":660},{"type":43,"tag":93,"props":2386,"children":2387},{"style":237},[2388],{"type":48,"value":503},{"type":43,"tag":93,"props":2390,"children":2391},{"style":243},[2392],{"type":48,"value":669},{"type":43,"tag":93,"props":2394,"children":2395},{"class":95,"line":672},[2396,2400,2404,2408,2412,2416,2420,2424],{"type":43,"tag":93,"props":2397,"children":2398},{"style":100},[2399],{"type":48,"value":8},{"type":43,"tag":93,"props":2401,"children":2402},{"style":106},[2403],{"type":48,"value":2084},{"type":43,"tag":93,"props":2405,"children":2406},{"style":106},[2407],{"type":48,"value":686},{"type":43,"tag":93,"props":2409,"children":2410},{"style":106},[2411],{"type":48,"value":2108},{"type":43,"tag":93,"props":2413,"children":2414},{"style":243},[2415],{"type":48,"value":447},{"type":43,"tag":93,"props":2417,"children":2418},{"style":106},[2419],{"type":48,"value":452},{"type":43,"tag":93,"props":2421,"children":2422},{"style":237},[2423],{"type":48,"value":457},{"type":43,"tag":93,"props":2425,"children":2426},{"style":243},[2427],{"type":48,"value":669},{"type":43,"tag":93,"props":2429,"children":2430},{"class":95,"line":709},[2431,2435,2439,2444,2448,2452,2456,2460,2464,2468,2472,2476,2480,2484,2488,2493],{"type":43,"tag":93,"props":2432,"children":2433},{"style":100},[2434],{"type":48,"value":8},{"type":43,"tag":93,"props":2436,"children":2437},{"style":106},[2438],{"type":48,"value":2084},{"type":43,"tag":93,"props":2440,"children":2441},{"style":106},[2442],{"type":48,"value":2443}," set-plan",{"type":43,"tag":93,"props":2445,"children":2446},{"style":106},[2447],{"type":48,"value":2108},{"type":43,"tag":93,"props":2449,"children":2450},{"style":243},[2451],{"type":48,"value":447},{"type":43,"tag":93,"props":2453,"children":2454},{"style":106},[2455],{"type":48,"value":452},{"type":43,"tag":93,"props":2457,"children":2458},{"style":237},[2459],{"type":48,"value":457},{"type":43,"tag":93,"props":2461,"children":2462},{"style":243},[2463],{"type":48,"value":462},{"type":43,"tag":93,"props":2465,"children":2466},{"style":106},[2467],{"type":48,"value":906},{"type":43,"tag":93,"props":2469,"children":2470},{"style":243},[2471],{"type":48,"value":447},{"type":43,"tag":93,"props":2473,"children":2474},{"style":106},[2475],{"type":48,"value":915},{"type":43,"tag":93,"props":2477,"children":2478},{"style":243},[2479],{"type":48,"value":920},{"type":43,"tag":93,"props":2481,"children":2482},{"style":100},[2483],{"type":48,"value":925},{"type":43,"tag":93,"props":2485,"children":2486},{"style":243},[2487],{"type":48,"value":920},{"type":43,"tag":93,"props":2489,"children":2490},{"style":100},[2491],{"type":48,"value":2492},"fixed",{"type":43,"tag":93,"props":2494,"children":2495},{"style":237},[2496],{"type":48,"value":669},{"type":43,"tag":93,"props":2498,"children":2499},{"class":95,"line":746},[2500,2504,2508,2513,2517,2521,2525,2529,2533,2538,2542,2546,2550],{"type":43,"tag":93,"props":2501,"children":2502},{"style":100},[2503],{"type":48,"value":8},{"type":43,"tag":93,"props":2505,"children":2506},{"style":106},[2507],{"type":48,"value":2084},{"type":43,"tag":93,"props":2509,"children":2510},{"style":106},[2511],{"type":48,"value":2512}," transfer",{"type":43,"tag":93,"props":2514,"children":2515},{"style":106},[2516],{"type":48,"value":2108},{"type":43,"tag":93,"props":2518,"children":2519},{"style":243},[2520],{"type":48,"value":447},{"type":43,"tag":93,"props":2522,"children":2523},{"style":106},[2524],{"type":48,"value":452},{"type":43,"tag":93,"props":2526,"children":2527},{"style":237},[2528],{"type":48,"value":457},{"type":43,"tag":93,"props":2530,"children":2531},{"style":243},[2532],{"type":48,"value":462},{"type":43,"tag":93,"props":2534,"children":2535},{"style":106},[2536],{"type":48,"value":2537}," --target-account",{"type":43,"tag":93,"props":2539,"children":2540},{"style":243},[2541],{"type":48,"value":447},{"type":43,"tag":93,"props":2543,"children":2544},{"style":106},[2545],{"type":48,"value":452},{"type":43,"tag":93,"props":2547,"children":2548},{"style":237},[2549],{"type":48,"value":457},{"type":43,"tag":93,"props":2551,"children":2552},{"style":243},[2553],{"type":48,"value":669},{"type":43,"tag":93,"props":2555,"children":2556},{"class":95,"line":756},[2557,2561,2565,2569],{"type":43,"tag":93,"props":2558,"children":2559},{"style":100},[2560],{"type":48,"value":8},{"type":43,"tag":93,"props":2562,"children":2563},{"style":106},[2564],{"type":48,"value":2084},{"type":43,"tag":93,"props":2566,"children":2567},{"style":106},[2568],{"type":48,"value":723},{"type":43,"tag":93,"props":2570,"children":2572},{"style":2571},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2573],{"type":48,"value":2574},"                             # aggregate across all indexes\n",{"type":43,"tag":93,"props":2576,"children":2577},{"class":95,"line":793},[2578,2582,2586,2591,2595,2599,2603,2607,2611,2616,2620,2625,2629,2634,2638,2643,2647,2652,2656,2661,2665,2670,2674,2679,2683],{"type":43,"tag":93,"props":2579,"children":2580},{"style":100},[2581],{"type":48,"value":8},{"type":43,"tag":93,"props":2583,"children":2584},{"style":106},[2585],{"type":48,"value":2084},{"type":43,"tag":93,"props":2587,"children":2588},{"style":106},[2589],{"type":48,"value":2590}," index-stats",{"type":43,"tag":93,"props":2592,"children":2593},{"style":106},[2594],{"type":48,"value":2108},{"type":43,"tag":93,"props":2596,"children":2597},{"style":243},[2598],{"type":48,"value":447},{"type":43,"tag":93,"props":2600,"children":2601},{"style":106},[2602],{"type":48,"value":452},{"type":43,"tag":93,"props":2604,"children":2605},{"style":237},[2606],{"type":48,"value":457},{"type":43,"tag":93,"props":2608,"children":2609},{"style":243},[2610],{"type":48,"value":462},{"type":43,"tag":93,"props":2612,"children":2613},{"style":237},[2614],{"type":48,"value":2615}," [--period ",{"type":43,"tag":93,"props":2617,"children":2618},{"style":243},[2619],{"type":48,"value":540},{"type":43,"tag":93,"props":2621,"children":2622},{"style":106},[2623],{"type":48,"value":2624},"1h",{"type":43,"tag":93,"props":2626,"children":2627},{"style":243},[2628],{"type":48,"value":920},{"type":43,"tag":93,"props":2630,"children":2631},{"style":100},[2632],{"type":48,"value":2633},"3h",{"type":43,"tag":93,"props":2635,"children":2636},{"style":243},[2637],{"type":48,"value":920},{"type":43,"tag":93,"props":2639,"children":2640},{"style":100},[2641],{"type":48,"value":2642},"12h",{"type":43,"tag":93,"props":2644,"children":2645},{"style":243},[2646],{"type":48,"value":920},{"type":43,"tag":93,"props":2648,"children":2649},{"style":100},[2650],{"type":48,"value":2651},"1d",{"type":43,"tag":93,"props":2653,"children":2654},{"style":243},[2655],{"type":48,"value":920},{"type":43,"tag":93,"props":2657,"children":2658},{"style":100},[2659],{"type":48,"value":2660},"3d",{"type":43,"tag":93,"props":2662,"children":2663},{"style":243},[2664],{"type":48,"value":920},{"type":43,"tag":93,"props":2666,"children":2667},{"style":100},[2668],{"type":48,"value":2669},"7d",{"type":43,"tag":93,"props":2671,"children":2672},{"style":243},[2673],{"type":48,"value":920},{"type":43,"tag":93,"props":2675,"children":2676},{"style":100},[2677],{"type":48,"value":2678},"30d",{"type":43,"tag":93,"props":2680,"children":2681},{"style":237},[2682],{"type":48,"value":462},{"type":43,"tag":93,"props":2684,"children":2685},{"style":106},[2686],{"type":48,"value":568},{"type":43,"tag":44,"props":2688,"children":2689},{},[2690,2692,2697,2698,2703,2704,2709,2711,2717,2718,2724,2725,2731,2733,2739,2740,2746,2747,2753,2755,2761,2762,2768,2769,2775,2776,2782,2784,2790,2791,2796,2798,2803,2805,2811],{"type":48,"value":2691},"Regions: ",{"type":43,"tag":51,"props":2693,"children":2695},{"className":2694},[],[2696],{"type":48,"value":1185},{"type":48,"value":1144},{"type":43,"tag":51,"props":2699,"children":2701},{"className":2700},[],[2702],{"type":48,"value":1142},{"type":48,"value":1144},{"type":43,"tag":51,"props":2705,"children":2707},{"className":2706},[],[2708],{"type":48,"value":1242},{"type":48,"value":2710},". Similarity: ",{"type":43,"tag":51,"props":2712,"children":2714},{"className":2713},[],[2715],{"type":48,"value":2716},"COSINE",{"type":48,"value":1144},{"type":43,"tag":51,"props":2719,"children":2721},{"className":2720},[],[2722],{"type":48,"value":2723},"EUCLIDEAN",{"type":48,"value":1144},{"type":43,"tag":51,"props":2726,"children":2728},{"className":2727},[],[2729],{"type":48,"value":2730},"DOT_PRODUCT",{"type":48,"value":2732},". Index types: ",{"type":43,"tag":51,"props":2734,"children":2736},{"className":2735},[],[2737],{"type":48,"value":2738},"DENSE",{"type":48,"value":1144},{"type":43,"tag":51,"props":2741,"children":2743},{"className":2742},[],[2744],{"type":48,"value":2745},"SPARSE",{"type":48,"value":1144},{"type":43,"tag":51,"props":2748,"children":2750},{"className":2749},[],[2751],{"type":48,"value":2752},"HYBRID",{"type":48,"value":2754},". Dense models: ",{"type":43,"tag":51,"props":2756,"children":2758},{"className":2757},[],[2759],{"type":48,"value":2760},"BGE_SMALL_EN_V1_5",{"type":48,"value":1144},{"type":43,"tag":51,"props":2763,"children":2765},{"className":2764},[],[2766],{"type":48,"value":2767},"BGE_BASE_EN_V1_5",{"type":48,"value":1144},{"type":43,"tag":51,"props":2770,"children":2772},{"className":2771},[],[2773],{"type":48,"value":2774},"BGE_LARGE_EN_V1_5",{"type":48,"value":1144},{"type":43,"tag":51,"props":2777,"children":2779},{"className":2778},[],[2780],{"type":48,"value":2781},"BGE_M3",{"type":48,"value":2783},". Sparse models: ",{"type":43,"tag":51,"props":2785,"children":2787},{"className":2786},[],[2788],{"type":48,"value":2789},"BM25",{"type":48,"value":1144},{"type":43,"tag":51,"props":2792,"children":2794},{"className":2793},[],[2795],{"type":48,"value":2781},{"type":48,"value":2797},". For ",{"type":43,"tag":51,"props":2799,"children":2801},{"className":2800},[],[2802],{"type":48,"value":2752},{"type":48,"value":2804}," with managed embeddings, set ",{"type":43,"tag":51,"props":2806,"children":2808},{"className":2807},[],[2809],{"type":48,"value":2810},"--dimension-count 0",{"type":48,"value":73},{"type":43,"tag":75,"props":2813,"children":2815},{"id":2814},"search",[2816],{"type":48,"value":2817},"Search",{"type":43,"tag":82,"props":2819,"children":2821},{"className":84,"code":2820,"language":86,"meta":87,"style":87},"upstash search list\nupstash search get --index-id \u003Cid>\nupstash search create --name \u003Cname> --region \u003Cregion> --type \u003Cfree|payg|fixed>\nupstash search delete --index-id \u003Cid> [--dry-run]\nupstash search rename --index-id \u003Cid> --name \u003Cnew-name>\nupstash search reset-password --index-id \u003Cid>\nupstash search transfer --index-id \u003Cid> --target-account \u003Cid>\nupstash search stats\nupstash search index-stats --index-id \u003Cid> [--period \u003C1h|3h|12h|1d|3d|7d|30d>]\n",[2822],{"type":43,"tag":51,"props":2823,"children":2824},{"__ignoreMap":87},[2825,2841,2876,2964,3003,3058,3093,3148,3164],{"type":43,"tag":93,"props":2826,"children":2827},{"class":95,"line":96},[2828,2832,2837],{"type":43,"tag":93,"props":2829,"children":2830},{"style":100},[2831],{"type":48,"value":8},{"type":43,"tag":93,"props":2833,"children":2834},{"style":106},[2835],{"type":48,"value":2836}," search",{"type":43,"tag":93,"props":2838,"children":2839},{"style":106},[2840],{"type":48,"value":421},{"type":43,"tag":93,"props":2842,"children":2843},{"class":95,"line":30},[2844,2848,2852,2856,2860,2864,2868,2872],{"type":43,"tag":93,"props":2845,"children":2846},{"style":100},[2847],{"type":48,"value":8},{"type":43,"tag":93,"props":2849,"children":2850},{"style":106},[2851],{"type":48,"value":2836},{"type":43,"tag":93,"props":2853,"children":2854},{"style":106},[2855],{"type":48,"value":437},{"type":43,"tag":93,"props":2857,"children":2858},{"style":106},[2859],{"type":48,"value":2108},{"type":43,"tag":93,"props":2861,"children":2862},{"style":243},[2863],{"type":48,"value":447},{"type":43,"tag":93,"props":2865,"children":2866},{"style":106},[2867],{"type":48,"value":452},{"type":43,"tag":93,"props":2869,"children":2870},{"style":237},[2871],{"type":48,"value":457},{"type":43,"tag":93,"props":2873,"children":2874},{"style":243},[2875],{"type":48,"value":669},{"type":43,"tag":93,"props":2877,"children":2878},{"class":95,"line":470},[2879,2883,2887,2891,2895,2899,2903,2907,2911,2915,2919,2923,2927,2931,2936,2940,2944,2948,2952,2956,2960],{"type":43,"tag":93,"props":2880,"children":2881},{"style":100},[2882],{"type":48,"value":8},{"type":43,"tag":93,"props":2884,"children":2885},{"style":106},[2886],{"type":48,"value":2836},{"type":43,"tag":93,"props":2888,"children":2889},{"style":106},[2890],{"type":48,"value":484},{"type":43,"tag":93,"props":2892,"children":2893},{"style":106},[2894],{"type":48,"value":489},{"type":43,"tag":93,"props":2896,"children":2897},{"style":243},[2898],{"type":48,"value":447},{"type":43,"tag":93,"props":2900,"children":2901},{"style":106},[2902],{"type":48,"value":498},{"type":43,"tag":93,"props":2904,"children":2905},{"style":237},[2906],{"type":48,"value":503},{"type":43,"tag":93,"props":2908,"children":2909},{"style":243},[2910],{"type":48,"value":462},{"type":43,"tag":93,"props":2912,"children":2913},{"style":106},[2914],{"type":48,"value":512},{"type":43,"tag":93,"props":2916,"children":2917},{"style":243},[2918],{"type":48,"value":447},{"type":43,"tag":93,"props":2920,"children":2921},{"style":106},[2922],{"type":48,"value":521},{"type":43,"tag":93,"props":2924,"children":2925},{"style":237},[2926],{"type":48,"value":526},{"type":43,"tag":93,"props":2928,"children":2929},{"style":243},[2930],{"type":48,"value":462},{"type":43,"tag":93,"props":2932,"children":2933},{"style":106},[2934],{"type":48,"value":2935}," --type",{"type":43,"tag":93,"props":2937,"children":2938},{"style":243},[2939],{"type":48,"value":447},{"type":43,"tag":93,"props":2941,"children":2942},{"style":106},[2943],{"type":48,"value":915},{"type":43,"tag":93,"props":2945,"children":2946},{"style":243},[2947],{"type":48,"value":920},{"type":43,"tag":93,"props":2949,"children":2950},{"style":100},[2951],{"type":48,"value":925},{"type":43,"tag":93,"props":2953,"children":2954},{"style":243},[2955],{"type":48,"value":920},{"type":43,"tag":93,"props":2957,"children":2958},{"style":100},[2959],{"type":48,"value":2492},{"type":43,"tag":93,"props":2961,"children":2962},{"style":237},[2963],{"type":48,"value":669},{"type":43,"tag":93,"props":2965,"children":2966},{"class":95,"line":571},[2967,2971,2975,2979,2983,2987,2991,2995,2999],{"type":43,"tag":93,"props":2968,"children":2969},{"style":100},[2970],{"type":48,"value":8},{"type":43,"tag":93,"props":2972,"children":2973},{"style":106},[2974],{"type":48,"value":2836},{"type":43,"tag":93,"props":2976,"children":2977},{"style":106},[2978],{"type":48,"value":585},{"type":43,"tag":93,"props":2980,"children":2981},{"style":106},[2982],{"type":48,"value":2108},{"type":43,"tag":93,"props":2984,"children":2985},{"style":243},[2986],{"type":48,"value":447},{"type":43,"tag":93,"props":2988,"children":2989},{"style":106},[2990],{"type":48,"value":452},{"type":43,"tag":93,"props":2992,"children":2993},{"style":237},[2994],{"type":48,"value":457},{"type":43,"tag":93,"props":2996,"children":2997},{"style":243},[2998],{"type":48,"value":462},{"type":43,"tag":93,"props":3000,"children":3001},{"style":237},[3002],{"type":48,"value":610},{"type":43,"tag":93,"props":3004,"children":3005},{"class":95,"line":613},[3006,3010,3014,3018,3022,3026,3030,3034,3038,3042,3046,3050,3054],{"type":43,"tag":93,"props":3007,"children":3008},{"style":100},[3009],{"type":48,"value":8},{"type":43,"tag":93,"props":3011,"children":3012},{"style":106},[3013],{"type":48,"value":2836},{"type":43,"tag":93,"props":3015,"children":3016},{"style":106},[3017],{"type":48,"value":627},{"type":43,"tag":93,"props":3019,"children":3020},{"style":106},[3021],{"type":48,"value":2108},{"type":43,"tag":93,"props":3023,"children":3024},{"style":243},[3025],{"type":48,"value":447},{"type":43,"tag":93,"props":3027,"children":3028},{"style":106},[3029],{"type":48,"value":452},{"type":43,"tag":93,"props":3031,"children":3032},{"style":237},[3033],{"type":48,"value":457},{"type":43,"tag":93,"props":3035,"children":3036},{"style":243},[3037],{"type":48,"value":462},{"type":43,"tag":93,"props":3039,"children":3040},{"style":106},[3041],{"type":48,"value":489},{"type":43,"tag":93,"props":3043,"children":3044},{"style":243},[3045],{"type":48,"value":447},{"type":43,"tag":93,"props":3047,"children":3048},{"style":106},[3049],{"type":48,"value":660},{"type":43,"tag":93,"props":3051,"children":3052},{"style":237},[3053],{"type":48,"value":503},{"type":43,"tag":93,"props":3055,"children":3056},{"style":243},[3057],{"type":48,"value":669},{"type":43,"tag":93,"props":3059,"children":3060},{"class":95,"line":672},[3061,3065,3069,3073,3077,3081,3085,3089],{"type":43,"tag":93,"props":3062,"children":3063},{"style":100},[3064],{"type":48,"value":8},{"type":43,"tag":93,"props":3066,"children":3067},{"style":106},[3068],{"type":48,"value":2836},{"type":43,"tag":93,"props":3070,"children":3071},{"style":106},[3072],{"type":48,"value":686},{"type":43,"tag":93,"props":3074,"children":3075},{"style":106},[3076],{"type":48,"value":2108},{"type":43,"tag":93,"props":3078,"children":3079},{"style":243},[3080],{"type":48,"value":447},{"type":43,"tag":93,"props":3082,"children":3083},{"style":106},[3084],{"type":48,"value":452},{"type":43,"tag":93,"props":3086,"children":3087},{"style":237},[3088],{"type":48,"value":457},{"type":43,"tag":93,"props":3090,"children":3091},{"style":243},[3092],{"type":48,"value":669},{"type":43,"tag":93,"props":3094,"children":3095},{"class":95,"line":709},[3096,3100,3104,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144],{"type":43,"tag":93,"props":3097,"children":3098},{"style":100},[3099],{"type":48,"value":8},{"type":43,"tag":93,"props":3101,"children":3102},{"style":106},[3103],{"type":48,"value":2836},{"type":43,"tag":93,"props":3105,"children":3106},{"style":106},[3107],{"type":48,"value":2512},{"type":43,"tag":93,"props":3109,"children":3110},{"style":106},[3111],{"type":48,"value":2108},{"type":43,"tag":93,"props":3113,"children":3114},{"style":243},[3115],{"type":48,"value":447},{"type":43,"tag":93,"props":3117,"children":3118},{"style":106},[3119],{"type":48,"value":452},{"type":43,"tag":93,"props":3121,"children":3122},{"style":237},[3123],{"type":48,"value":457},{"type":43,"tag":93,"props":3125,"children":3126},{"style":243},[3127],{"type":48,"value":462},{"type":43,"tag":93,"props":3129,"children":3130},{"style":106},[3131],{"type":48,"value":2537},{"type":43,"tag":93,"props":3133,"children":3134},{"style":243},[3135],{"type":48,"value":447},{"type":43,"tag":93,"props":3137,"children":3138},{"style":106},[3139],{"type":48,"value":452},{"type":43,"tag":93,"props":3141,"children":3142},{"style":237},[3143],{"type":48,"value":457},{"type":43,"tag":93,"props":3145,"children":3146},{"style":243},[3147],{"type":48,"value":669},{"type":43,"tag":93,"props":3149,"children":3150},{"class":95,"line":746},[3151,3155,3159],{"type":43,"tag":93,"props":3152,"children":3153},{"style":100},[3154],{"type":48,"value":8},{"type":43,"tag":93,"props":3156,"children":3157},{"style":106},[3158],{"type":48,"value":2836},{"type":43,"tag":93,"props":3160,"children":3161},{"style":106},[3162],{"type":48,"value":3163}," stats\n",{"type":43,"tag":93,"props":3165,"children":3166},{"class":95,"line":756},[3167,3171,3175,3179,3183,3187,3191,3195,3199,3203,3207,3211,3215,3219,3223,3227,3231,3235,3239,3243,3247,3251,3255,3259,3263],{"type":43,"tag":93,"props":3168,"children":3169},{"style":100},[3170],{"type":48,"value":8},{"type":43,"tag":93,"props":3172,"children":3173},{"style":106},[3174],{"type":48,"value":2836},{"type":43,"tag":93,"props":3176,"children":3177},{"style":106},[3178],{"type":48,"value":2590},{"type":43,"tag":93,"props":3180,"children":3181},{"style":106},[3182],{"type":48,"value":2108},{"type":43,"tag":93,"props":3184,"children":3185},{"style":243},[3186],{"type":48,"value":447},{"type":43,"tag":93,"props":3188,"children":3189},{"style":106},[3190],{"type":48,"value":452},{"type":43,"tag":93,"props":3192,"children":3193},{"style":237},[3194],{"type":48,"value":457},{"type":43,"tag":93,"props":3196,"children":3197},{"style":243},[3198],{"type":48,"value":462},{"type":43,"tag":93,"props":3200,"children":3201},{"style":237},[3202],{"type":48,"value":2615},{"type":43,"tag":93,"props":3204,"children":3205},{"style":243},[3206],{"type":48,"value":540},{"type":43,"tag":93,"props":3208,"children":3209},{"style":106},[3210],{"type":48,"value":2624},{"type":43,"tag":93,"props":3212,"children":3213},{"style":243},[3214],{"type":48,"value":920},{"type":43,"tag":93,"props":3216,"children":3217},{"style":100},[3218],{"type":48,"value":2633},{"type":43,"tag":93,"props":3220,"children":3221},{"style":243},[3222],{"type":48,"value":920},{"type":43,"tag":93,"props":3224,"children":3225},{"style":100},[3226],{"type":48,"value":2642},{"type":43,"tag":93,"props":3228,"children":3229},{"style":243},[3230],{"type":48,"value":920},{"type":43,"tag":93,"props":3232,"children":3233},{"style":100},[3234],{"type":48,"value":2651},{"type":43,"tag":93,"props":3236,"children":3237},{"style":243},[3238],{"type":48,"value":920},{"type":43,"tag":93,"props":3240,"children":3241},{"style":100},[3242],{"type":48,"value":2660},{"type":43,"tag":93,"props":3244,"children":3245},{"style":243},[3246],{"type":48,"value":920},{"type":43,"tag":93,"props":3248,"children":3249},{"style":100},[3250],{"type":48,"value":2669},{"type":43,"tag":93,"props":3252,"children":3253},{"style":243},[3254],{"type":48,"value":920},{"type":43,"tag":93,"props":3256,"children":3257},{"style":100},[3258],{"type":48,"value":2678},{"type":43,"tag":93,"props":3260,"children":3261},{"style":237},[3262],{"type":48,"value":462},{"type":43,"tag":93,"props":3264,"children":3265},{"style":106},[3266],{"type":48,"value":568},{"type":43,"tag":44,"props":3268,"children":3269},{},[3270,3271,3276,3277,3282],{"type":48,"value":2691},{"type":43,"tag":51,"props":3272,"children":3274},{"className":3273},[],[3275],{"type":48,"value":1185},{"type":48,"value":1144},{"type":43,"tag":51,"props":3278,"children":3280},{"className":3279},[],[3281],{"type":48,"value":1242},{"type":48,"value":73},{"type":43,"tag":75,"props":3284,"children":3286},{"id":3285},"qstash",[3287],{"type":48,"value":376},{"type":43,"tag":82,"props":3289,"children":3291},{"className":84,"code":3290,"language":86,"meta":87,"style":87},"upstash qstash list                              # run first; maps region → id\nupstash qstash get --qstash-id \u003Cid>\nupstash qstash rotate-token --qstash-id \u003Cid>\nupstash qstash set-plan --qstash-id \u003Cid> --plan \u003Cpaid|qstash_fixed_1m|qstash_fixed_10m|qstash_fixed_100m>\nupstash qstash stats --qstash-id \u003Cid> [--period \u003C1h|3h|12h|1d|3d|7d|30d>]\nupstash qstash ipv4                              # CIDR blocks for allowlisting\nupstash qstash move-to-team --qstash-id \u003Cid> --target-team-id \u003Cid>\nupstash qstash update-budget --qstash-id \u003Cid> --budget \u003Cdollars>    # 0 = no limit\nupstash qstash {enable,disable}-prodpack --qstash-id \u003Cid>\n",[3292],{"type":43,"tag":51,"props":3293,"children":3294},{"__ignoreMap":87},[3295,3316,3352,3388,3466,3569,3590,3646,3707],{"type":43,"tag":93,"props":3296,"children":3297},{"class":95,"line":96},[3298,3302,3307,3311],{"type":43,"tag":93,"props":3299,"children":3300},{"style":100},[3301],{"type":48,"value":8},{"type":43,"tag":93,"props":3303,"children":3304},{"style":106},[3305],{"type":48,"value":3306}," qstash",{"type":43,"tag":93,"props":3308,"children":3309},{"style":106},[3310],{"type":48,"value":1299},{"type":43,"tag":93,"props":3312,"children":3313},{"style":2571},[3314],{"type":48,"value":3315},"                              # run first; maps region → id\n",{"type":43,"tag":93,"props":3317,"children":3318},{"class":95,"line":30},[3319,3323,3327,3331,3336,3340,3344,3348],{"type":43,"tag":93,"props":3320,"children":3321},{"style":100},[3322],{"type":48,"value":8},{"type":43,"tag":93,"props":3324,"children":3325},{"style":106},[3326],{"type":48,"value":3306},{"type":43,"tag":93,"props":3328,"children":3329},{"style":106},[3330],{"type":48,"value":437},{"type":43,"tag":93,"props":3332,"children":3333},{"style":106},[3334],{"type":48,"value":3335}," --qstash-id",{"type":43,"tag":93,"props":3337,"children":3338},{"style":243},[3339],{"type":48,"value":447},{"type":43,"tag":93,"props":3341,"children":3342},{"style":106},[3343],{"type":48,"value":452},{"type":43,"tag":93,"props":3345,"children":3346},{"style":237},[3347],{"type":48,"value":457},{"type":43,"tag":93,"props":3349,"children":3350},{"style":243},[3351],{"type":48,"value":669},{"type":43,"tag":93,"props":3353,"children":3354},{"class":95,"line":470},[3355,3359,3363,3368,3372,3376,3380,3384],{"type":43,"tag":93,"props":3356,"children":3357},{"style":100},[3358],{"type":48,"value":8},{"type":43,"tag":93,"props":3360,"children":3361},{"style":106},[3362],{"type":48,"value":3306},{"type":43,"tag":93,"props":3364,"children":3365},{"style":106},[3366],{"type":48,"value":3367}," rotate-token",{"type":43,"tag":93,"props":3369,"children":3370},{"style":106},[3371],{"type":48,"value":3335},{"type":43,"tag":93,"props":3373,"children":3374},{"style":243},[3375],{"type":48,"value":447},{"type":43,"tag":93,"props":3377,"children":3378},{"style":106},[3379],{"type":48,"value":452},{"type":43,"tag":93,"props":3381,"children":3382},{"style":237},[3383],{"type":48,"value":457},{"type":43,"tag":93,"props":3385,"children":3386},{"style":243},[3387],{"type":48,"value":669},{"type":43,"tag":93,"props":3389,"children":3390},{"class":95,"line":571},[3391,3395,3399,3403,3407,3411,3415,3419,3423,3427,3431,3435,3439,3444,3448,3453,3457,3462],{"type":43,"tag":93,"props":3392,"children":3393},{"style":100},[3394],{"type":48,"value":8},{"type":43,"tag":93,"props":3396,"children":3397},{"style":106},[3398],{"type":48,"value":3306},{"type":43,"tag":93,"props":3400,"children":3401},{"style":106},[3402],{"type":48,"value":2443},{"type":43,"tag":93,"props":3404,"children":3405},{"style":106},[3406],{"type":48,"value":3335},{"type":43,"tag":93,"props":3408,"children":3409},{"style":243},[3410],{"type":48,"value":447},{"type":43,"tag":93,"props":3412,"children":3413},{"style":106},[3414],{"type":48,"value":452},{"type":43,"tag":93,"props":3416,"children":3417},{"style":237},[3418],{"type":48,"value":457},{"type":43,"tag":93,"props":3420,"children":3421},{"style":243},[3422],{"type":48,"value":462},{"type":43,"tag":93,"props":3424,"children":3425},{"style":106},[3426],{"type":48,"value":906},{"type":43,"tag":93,"props":3428,"children":3429},{"style":243},[3430],{"type":48,"value":447},{"type":43,"tag":93,"props":3432,"children":3433},{"style":106},[3434],{"type":48,"value":943},{"type":43,"tag":93,"props":3436,"children":3437},{"style":243},[3438],{"type":48,"value":920},{"type":43,"tag":93,"props":3440,"children":3441},{"style":100},[3442],{"type":48,"value":3443},"qstash_fixed_1m",{"type":43,"tag":93,"props":3445,"children":3446},{"style":243},[3447],{"type":48,"value":920},{"type":43,"tag":93,"props":3449,"children":3450},{"style":100},[3451],{"type":48,"value":3452},"qstash_fixed_10m",{"type":43,"tag":93,"props":3454,"children":3455},{"style":243},[3456],{"type":48,"value":920},{"type":43,"tag":93,"props":3458,"children":3459},{"style":100},[3460],{"type":48,"value":3461},"qstash_fixed_100m",{"type":43,"tag":93,"props":3463,"children":3464},{"style":237},[3465],{"type":48,"value":669},{"type":43,"tag":93,"props":3467,"children":3468},{"class":95,"line":613},[3469,3473,3477,3481,3485,3489,3493,3497,3501,3505,3509,3513,3517,3521,3525,3529,3533,3537,3541,3545,3549,3553,3557,3561,3565],{"type":43,"tag":93,"props":3470,"children":3471},{"style":100},[3472],{"type":48,"value":8},{"type":43,"tag":93,"props":3474,"children":3475},{"style":106},[3476],{"type":48,"value":3306},{"type":43,"tag":93,"props":3478,"children":3479},{"style":106},[3480],{"type":48,"value":723},{"type":43,"tag":93,"props":3482,"children":3483},{"style":106},[3484],{"type":48,"value":3335},{"type":43,"tag":93,"props":3486,"children":3487},{"style":243},[3488],{"type":48,"value":447},{"type":43,"tag":93,"props":3490,"children":3491},{"style":106},[3492],{"type":48,"value":452},{"type":43,"tag":93,"props":3494,"children":3495},{"style":237},[3496],{"type":48,"value":457},{"type":43,"tag":93,"props":3498,"children":3499},{"style":243},[3500],{"type":48,"value":462},{"type":43,"tag":93,"props":3502,"children":3503},{"style":237},[3504],{"type":48,"value":2615},{"type":43,"tag":93,"props":3506,"children":3507},{"style":243},[3508],{"type":48,"value":540},{"type":43,"tag":93,"props":3510,"children":3511},{"style":106},[3512],{"type":48,"value":2624},{"type":43,"tag":93,"props":3514,"children":3515},{"style":243},[3516],{"type":48,"value":920},{"type":43,"tag":93,"props":3518,"children":3519},{"style":100},[3520],{"type":48,"value":2633},{"type":43,"tag":93,"props":3522,"children":3523},{"style":243},[3524],{"type":48,"value":920},{"type":43,"tag":93,"props":3526,"children":3527},{"style":100},[3528],{"type":48,"value":2642},{"type":43,"tag":93,"props":3530,"children":3531},{"style":243},[3532],{"type":48,"value":920},{"type":43,"tag":93,"props":3534,"children":3535},{"style":100},[3536],{"type":48,"value":2651},{"type":43,"tag":93,"props":3538,"children":3539},{"style":243},[3540],{"type":48,"value":920},{"type":43,"tag":93,"props":3542,"children":3543},{"style":100},[3544],{"type":48,"value":2660},{"type":43,"tag":93,"props":3546,"children":3547},{"style":243},[3548],{"type":48,"value":920},{"type":43,"tag":93,"props":3550,"children":3551},{"style":100},[3552],{"type":48,"value":2669},{"type":43,"tag":93,"props":3554,"children":3555},{"style":243},[3556],{"type":48,"value":920},{"type":43,"tag":93,"props":3558,"children":3559},{"style":100},[3560],{"type":48,"value":2678},{"type":43,"tag":93,"props":3562,"children":3563},{"style":237},[3564],{"type":48,"value":462},{"type":43,"tag":93,"props":3566,"children":3567},{"style":106},[3568],{"type":48,"value":568},{"type":43,"tag":93,"props":3570,"children":3571},{"class":95,"line":672},[3572,3576,3580,3585],{"type":43,"tag":93,"props":3573,"children":3574},{"style":100},[3575],{"type":48,"value":8},{"type":43,"tag":93,"props":3577,"children":3578},{"style":106},[3579],{"type":48,"value":3306},{"type":43,"tag":93,"props":3581,"children":3582},{"style":106},[3583],{"type":48,"value":3584}," ipv4",{"type":43,"tag":93,"props":3586,"children":3587},{"style":2571},[3588],{"type":48,"value":3589},"                              # CIDR blocks for allowlisting\n",{"type":43,"tag":93,"props":3591,"children":3592},{"class":95,"line":709},[3593,3597,3601,3605,3609,3613,3617,3621,3625,3630,3634,3638,3642],{"type":43,"tag":93,"props":3594,"children":3595},{"style":100},[3596],{"type":48,"value":8},{"type":43,"tag":93,"props":3598,"children":3599},{"style":106},[3600],{"type":48,"value":3306},{"type":43,"tag":93,"props":3602,"children":3603},{"style":106},[3604],{"type":48,"value":1090},{"type":43,"tag":93,"props":3606,"children":3607},{"style":106},[3608],{"type":48,"value":3335},{"type":43,"tag":93,"props":3610,"children":3611},{"style":243},[3612],{"type":48,"value":447},{"type":43,"tag":93,"props":3614,"children":3615},{"style":106},[3616],{"type":48,"value":452},{"type":43,"tag":93,"props":3618,"children":3619},{"style":237},[3620],{"type":48,"value":457},{"type":43,"tag":93,"props":3622,"children":3623},{"style":243},[3624],{"type":48,"value":462},{"type":43,"tag":93,"props":3626,"children":3627},{"style":106},[3628],{"type":48,"value":3629}," --target-team-id",{"type":43,"tag":93,"props":3631,"children":3632},{"style":243},[3633],{"type":48,"value":447},{"type":43,"tag":93,"props":3635,"children":3636},{"style":106},[3637],{"type":48,"value":452},{"type":43,"tag":93,"props":3639,"children":3640},{"style":237},[3641],{"type":48,"value":457},{"type":43,"tag":93,"props":3643,"children":3644},{"style":243},[3645],{"type":48,"value":669},{"type":43,"tag":93,"props":3647,"children":3648},{"class":95,"line":746},[3649,3653,3657,3661,3665,3669,3673,3677,3681,3685,3689,3694,3698,3702],{"type":43,"tag":93,"props":3650,"children":3651},{"style":100},[3652],{"type":48,"value":8},{"type":43,"tag":93,"props":3654,"children":3655},{"style":106},[3656],{"type":48,"value":3306},{"type":43,"tag":93,"props":3658,"children":3659},{"style":106},[3660],{"type":48,"value":964},{"type":43,"tag":93,"props":3662,"children":3663},{"style":106},[3664],{"type":48,"value":3335},{"type":43,"tag":93,"props":3666,"children":3667},{"style":243},[3668],{"type":48,"value":447},{"type":43,"tag":93,"props":3670,"children":3671},{"style":106},[3672],{"type":48,"value":452},{"type":43,"tag":93,"props":3674,"children":3675},{"style":237},[3676],{"type":48,"value":457},{"type":43,"tag":93,"props":3678,"children":3679},{"style":243},[3680],{"type":48,"value":462},{"type":43,"tag":93,"props":3682,"children":3683},{"style":106},[3684],{"type":48,"value":989},{"type":43,"tag":93,"props":3686,"children":3687},{"style":243},[3688],{"type":48,"value":447},{"type":43,"tag":93,"props":3690,"children":3691},{"style":106},[3692],{"type":48,"value":3693},"dollar",{"type":43,"tag":93,"props":3695,"children":3696},{"style":237},[3697],{"type":48,"value":1003},{"type":43,"tag":93,"props":3699,"children":3700},{"style":243},[3701],{"type":48,"value":462},{"type":43,"tag":93,"props":3703,"children":3704},{"style":2571},[3705],{"type":48,"value":3706},"    # 0 = no limit\n",{"type":43,"tag":93,"props":3708,"children":3709},{"class":95,"line":756},[3710,3714,3718,3723,3727,3731,3735,3739],{"type":43,"tag":93,"props":3711,"children":3712},{"style":100},[3713],{"type":48,"value":8},{"type":43,"tag":93,"props":3715,"children":3716},{"style":106},[3717],{"type":48,"value":3306},{"type":43,"tag":93,"props":3719,"children":3720},{"style":106},[3721],{"type":48,"value":3722}," {enable,disable}-prodpack",{"type":43,"tag":93,"props":3724,"children":3725},{"style":106},[3726],{"type":48,"value":3335},{"type":43,"tag":93,"props":3728,"children":3729},{"style":243},[3730],{"type":48,"value":447},{"type":43,"tag":93,"props":3732,"children":3733},{"style":106},[3734],{"type":48,"value":452},{"type":43,"tag":93,"props":3736,"children":3737},{"style":237},[3738],{"type":48,"value":457},{"type":43,"tag":93,"props":3740,"children":3741},{"style":243},[3742],{"type":48,"value":669},{"type":43,"tag":75,"props":3744,"children":3746},{"id":3745},"conventions",[3747],{"type":48,"value":3748},"Conventions",{"type":43,"tag":3750,"props":3751,"children":3752},"ul",{},[3753,3774,3802],{"type":43,"tag":3754,"props":3755,"children":3756},"li",{},[3757,3759,3765,3767,3773],{"type":48,"value":3758},"Pipe any output to ",{"type":43,"tag":51,"props":3760,"children":3762},{"className":3761},[],[3763],{"type":48,"value":3764},"jq",{"type":48,"value":3766}," for field extraction, e.g. ",{"type":43,"tag":51,"props":3768,"children":3770},{"className":3769},[],[3771],{"type":48,"value":3772},"upstash redis list | jq '.[].database_id'",{"type":48,"value":73},{"type":43,"tag":3754,"props":3775,"children":3776},{},[3777,3779,3785,3787,3793,3795,3801],{"type":48,"value":3778},"Use ",{"type":43,"tag":51,"props":3780,"children":3782},{"className":3781},[],[3783],{"type":48,"value":3784},"--dry-run",{"type":48,"value":3786}," first on any ",{"type":43,"tag":51,"props":3788,"children":3790},{"className":3789},[],[3791],{"type":48,"value":3792},"delete",{"type":48,"value":3794}," or ",{"type":43,"tag":51,"props":3796,"children":3798},{"className":3797},[],[3799],{"type":48,"value":3800},"remove-member",{"type":48,"value":73},{"type":43,"tag":3754,"props":3803,"children":3804},{},[3805,3806,3812,3814,3820],{"type":48,"value":3778},{"type":43,"tag":51,"props":3807,"children":3809},{"className":3808},[],[3810],{"type":48,"value":3811},"--hide-credentials",{"type":48,"value":3813}," on ",{"type":43,"tag":51,"props":3815,"children":3817},{"className":3816},[],[3818],{"type":48,"value":3819},"redis get",{"type":48,"value":3821}," when the password isn't needed.",{"type":43,"tag":3823,"props":3824,"children":3825},"style",{},[3826],{"type":48,"value":3827},"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":3829,"total":709},[3830,3840,3860,3868,3883,3898,3909],{"slug":8,"name":8,"fn":3831,"description":3832,"org":3833,"tags":3834,"stars":26,"repoUrl":27,"updatedAt":3839},"build applications with Upstash SDKs","Work with any Upstash TypeScript\u002FJavaScript SDK including Redis, Box, QStash, Workflow, Vector, Search and Ratelimit. Use when the user is working with any Upstash product or SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3835,3836,3837,3838],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:55:15.67714",{"slug":3841,"name":3841,"fn":3842,"description":3843,"org":3844,"tags":3845,"stars":26,"repoUrl":27,"updatedAt":3859},"upstash-box-py","build sandboxed environments with Upstash Box","Work with the upstash-box Python SDK for sandboxed cloud containers with AI agents, shell, filesystem, and git. Use when building with Upstash Box in Python, creating sandboxed environments, running AI agents in containers, or orchestrating parallel boxes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3846,3849,3852,3855,3858],{"name":3847,"slug":3848,"type":15},"Cloud","cloud",{"name":3850,"slug":3851,"type":15},"Code Execution","code-execution",{"name":3853,"slug":3854,"type":15},"Python","python",{"name":3856,"slug":3857,"type":15},"Sandboxing","sandboxing",{"name":9,"slug":8,"type":15},"2026-06-26T07:48:31.466005",{"slug":4,"name":4,"fn":5,"description":6,"org":3861,"tags":3862,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3863,3864,3865,3866,3867],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"slug":3869,"name":3869,"fn":3870,"description":3871,"org":3872,"tags":3873,"stars":26,"repoUrl":27,"updatedAt":3882},"upstash-qstash-js","manage serverless messaging with QStash","Work with the QStash TypeScript\u002FJavaScript SDK for serverless messaging, scheduling. Use when publishing messages to HTTP endpoints, creating schedules, managing queues, verifying incoming messages and other QStash features in serverless environments.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3874,3877,3880,3881],{"name":3875,"slug":3876,"type":15},"Messaging","messaging",{"name":3878,"slug":3879,"type":15},"Node.js","node-js",{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:55:20.426103",{"slug":3884,"name":3884,"fn":3885,"description":3886,"org":3887,"tags":3888,"stars":26,"repoUrl":27,"updatedAt":3897},"upstash-ratelimit-js","implement rate limiting with Upstash","Lightweight guidance for using the Upstash Redis RateLimit TypeScript\u002FJavaScript SDK, including setup steps, basic usage, and pointers to advanced algorithm, features, pricing, and traffic‑protection docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3889,3890,3893,3896],{"name":3878,"slug":3879,"type":15},{"name":3891,"slug":3892,"type":15},"Performance","performance",{"name":3894,"slug":3895,"type":15},"Security","security",{"name":9,"slug":8,"type":15},"2026-04-06T18:55:19.131145",{"slug":3899,"name":3899,"fn":3900,"description":3901,"org":3902,"tags":3903,"stars":26,"repoUrl":27,"updatedAt":3908},"upstash-redis-js","manage serverless Redis with Upstash","Work with the Upstash Redis TypeScript\u002FJavaScript SDK for serverless Redis operations. Use for caching, session storage, rate limiting, leaderboards, full-text search (querying, filtering, aggregating) with Upstash Redis Search (different from regular FT.SEARCH), and all Redis data structures. Supports automatic serialization\u002Fdeserialization of JavaScript types. Upstash Redis Search also available via @upstash\u002Fsearch-redis and @upstash\u002Fsearch-ioredis adapters for TCP clients.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3904,3905,3906,3907],{"name":3878,"slug":3879,"type":15},{"name":20,"slug":21,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},"2026-04-06T18:55:22.793505",{"slug":3910,"name":3910,"fn":3911,"description":3912,"org":3913,"tags":3914,"stars":26,"repoUrl":27,"updatedAt":3927},"upstash-redis-start","provision Upstash Redis databases for agents","Provision a zero-config, no-signup Upstash Redis database for an AI agent via a single POST to `https:\u002F\u002Fupstash.com\u002Fstart-redis`. Use when an agent needs scratch Redis for short-term memory, conversation history, sub-agent work queues, or ranked recall and the user has not provided credentials. The database lives 3 days unless the user claims it.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3915,3918,3921,3922,3925,3926],{"name":3916,"slug":3917,"type":15},"Agents","agents",{"name":3919,"slug":3920,"type":15},"Automation","automation",{"name":17,"slug":18,"type":15},{"name":3923,"slug":3924,"type":15},"Memory","memory",{"name":20,"slug":21,"type":15},{"name":9,"slug":8,"type":15},"2026-05-09T05:27:35.503104",{"items":3929,"total":4088},[3930,3946,3961,3973,3985,4000,4012,4024,4039,4054,4066,4081],{"slug":3931,"name":3931,"fn":3932,"description":3933,"org":3934,"tags":3935,"stars":3943,"repoUrl":3944,"updatedAt":3945},"context7-cli","manage documentation and skills with ctx7","Use the ctx7 CLI to fetch library documentation, manage AI coding skills, and configure Context7 MCP. Activate when the user mentions \"ctx7\" or \"context7\", needs current docs for any library, wants to install\u002Fsearch\u002Fgenerate skills, or needs to set up Context7 for their AI coding agent.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3936,3937,3940],{"name":13,"slug":14,"type":15},{"name":3938,"slug":3939,"type":15},"Documentation","documentation",{"name":3941,"slug":3942,"type":15},"Knowledge Management","knowledge-management",60095,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fcontext7","2026-04-06T18:55:02.689254",{"slug":3947,"name":3947,"fn":3948,"description":3949,"org":3950,"tags":3951,"stars":3943,"repoUrl":3944,"updatedAt":3960},"context7-docs","fetch documentation and code examples","Fetch up-to-date documentation and code examples for any library, framework, SDK, CLI tool, or cloud service. Use whenever the user asks about a specific library — even well-known ones like React, Next.js, Prisma, Express, Tailwind, Django, or Spring Boot — because training data may not reflect recent API changes or version updates.\nAlways use for: API syntax questions, configuration options, version migration issues, \"how do I\" questions mentioning a library name, debugging that involves library-specific behavior, setup instructions, and CLI tool usage.\nUse even when you think you know the answer. Do not rely on training data for API details, signatures, or configuration options — they are frequently out of date. Prefer this over web search for library documentation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3952,3953,3954,3957],{"name":13,"slug":14,"type":15},{"name":3938,"slug":3939,"type":15},{"name":3955,"slug":3956,"type":15},"Reference","reference",{"name":3958,"slug":3959,"type":15},"SDK","sdk","2026-07-28T05:35:31.125695",{"slug":3962,"name":3962,"fn":3963,"description":3964,"org":3965,"tags":3966,"stars":3943,"repoUrl":3944,"updatedAt":3972},"context7-mcp","retrieve library documentation via MCP","This skill should be used when the user asks about libraries, frameworks, API references, or needs code examples. Activates for setup questions, code generation involving libraries, or mentions of specific frameworks like React, Vue, Next.js, Prisma, Supabase, etc.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3967,3968,3969],{"name":3938,"slug":3939,"type":15},{"name":3941,"slug":3942,"type":15},{"name":3970,"slug":3971,"type":15},"MCP","mcp","2026-07-28T05:35:32.109879",{"slug":3974,"name":3974,"fn":3975,"description":3976,"org":3977,"tags":3978,"stars":3943,"repoUrl":3944,"updatedAt":3984},"find-docs","retrieve documentation for developer technologies","Retrieves up-to-date documentation, API references, and code examples for any developer technology. Use this skill whenever the user asks about a specific library, framework, SDK, CLI tool, or cloud service — even for well-known ones like React, Next.js, Prisma, Express, Tailwind, Django, or Spring Boot. Your training data may not reflect recent API changes or version updates.\nAlways use for: API syntax questions, configuration options, version migration issues, \"how do I\" questions mentioning a library name, debugging that involves library-specific behavior, setup instructions, and CLI tool usage.\nUse even when you think you know the answer — do not rely on training data for API details, signatures, or configuration options as they are frequently outdated. Always verify against current docs. Prefer this over web search for library documentation and API details.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3979,3980,3983],{"name":3938,"slug":3939,"type":15},{"name":3981,"slug":3982,"type":15},"Research","research",{"name":2817,"slug":2814,"type":15},"2026-07-28T05:35:30.135004",{"slug":3986,"name":3986,"fn":3987,"description":3988,"org":3989,"tags":3990,"stars":3997,"repoUrl":3998,"updatedAt":3999},"upstash-ratelimit-ts","implement Redis rate limiting with Upstash","Lightweight guidance for using the Redis Rate Limit TypeScript SDK, including setup steps, basic usage, and pointers to advanced algorithm, features, pricing, and traffic‑protection docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3991,3992,3993,3996],{"name":3891,"slug":3892,"type":15},{"name":20,"slug":21,"type":15},{"name":3994,"slug":3995,"type":15},"TypeScript","typescript",{"name":9,"slug":8,"type":15},2043,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fratelimit-js","2026-04-06T18:55:05.25459",{"slug":4001,"name":4001,"fn":3900,"description":4002,"org":4003,"tags":4004,"stars":4009,"repoUrl":4010,"updatedAt":4011},"redis-js","Work with the Upstash Redis JavaScript\u002FTypeScript SDK for serverless Redis operations. Use for caching, session storage, rate limiting, leaderboards, full-text search (querying, filtering, aggregating with @upstash\u002Fredis search extension), and all Redis data structures. Supports automatic serialization\u002Fdeserialization of JavaScript types. Search also available via @upstash\u002Fsearch-redis and @upstash\u002Fsearch-ioredis adapters for TCP clients.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4005,4006,4007,4008],{"name":3878,"slug":3879,"type":15},{"name":20,"slug":21,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},959,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fredis-js","2026-04-06T18:55:06.549589",{"slug":4013,"name":4013,"fn":3870,"description":4014,"org":4015,"tags":4016,"stars":4021,"repoUrl":4022,"updatedAt":4023},"qstash-js","Work with the QStash JavaScript\u002FTypeScript SDK for serverless messaging, scheduling. Use when publishing messages to HTTP endpoints, creating schedules, managing queues, verifying incoming messages in serverless environments.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4017,4018,4019,4020],{"name":3875,"slug":3876,"type":15},{"name":3878,"slug":3879,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},268,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fqstash-js","2026-04-06T18:55:07.811408",{"slug":4025,"name":4025,"fn":4026,"description":4027,"org":4028,"tags":4029,"stars":4036,"repoUrl":4037,"updatedAt":4038},"upstash-workflow-js","build serverless workflows with Upstash","Lightweight guidance for using the Upstash Workflow SDK to define, trigger, and manage workflows. Use this Skill whenever a user wants to create workflow endpoints, run steps, or interact with the Upstash Workflow client.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4030,4031,4032,4033],{"name":3878,"slug":3879,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},{"name":4034,"slug":4035,"type":15},"Workflow Automation","workflow-automation",150,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fworkflow-js","2026-04-06T18:55:09.106744",{"slug":4040,"name":4040,"fn":4041,"description":4042,"org":4043,"tags":4044,"stars":4051,"repoUrl":4052,"updatedAt":4053},"upstash-vector-js","implement vector search with Upstash","Provides quick-start guidance and a unified entry point for Vector features, SDK usage, and integrations. Use when users ask how to work with Vector, its TS SDK, features, or supported frameworks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4045,4048,4049,4050],{"name":4046,"slug":4047,"type":15},"AI Infrastructure","ai-infrastructure",{"name":3878,"slug":3879,"type":15},{"name":2817,"slug":2814,"type":15},{"name":9,"slug":8,"type":15},70,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fvector-js","2026-04-06T18:55:10.452627",{"slug":4055,"name":4055,"fn":3842,"description":4056,"org":4057,"tags":4058,"stars":4063,"repoUrl":4064,"updatedAt":4065},"upstash-box-js","Work with the @upstash\u002Fbox SDK for sandboxed cloud containers with AI agents, shell, filesystem, and git. Use when building with Upstash Box, creating sandboxed environments, running AI agents in containers, or orchestrating parallel boxes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4059,4060,4061,4062],{"name":3916,"slug":3917,"type":15},{"name":3878,"slug":3879,"type":15},{"name":3856,"slug":3857,"type":15},{"name":9,"slug":8,"type":15},34,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fbox","2026-04-06T18:55:14.361763",{"slug":4067,"name":4067,"fn":4068,"description":4069,"org":4070,"tags":4071,"stars":4078,"repoUrl":4079,"updatedAt":4080},"upstash-search-js","implement search features with Upstash","Entry point for documentation skills covering Upstash Search quick starts, core concepts, and TypeScript SDK usage. Use when a user asks how to get started, how indexing works, or how to use the TS client.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4072,4075,4076,4077],{"name":4073,"slug":4074,"type":15},"API Development","api-development",{"name":3878,"slug":3879,"type":15},{"name":2817,"slug":2814,"type":15},{"name":9,"slug":8,"type":15},22,"https:\u002F\u002Fgithub.com\u002Fupstash\u002Fsearch-js","2026-04-06T18:55:11.769669",{"slug":8,"name":8,"fn":3831,"description":3832,"org":4082,"tags":4083,"stars":26,"repoUrl":27,"updatedAt":3839},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4084,4085,4086,4087],{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":24,"slug":25,"type":15},{"name":9,"slug":8,"type":15},19]