Skip to main content
The most up-to-date pricing is always available at upstash.com/pricing/redis.
Upstash Redis has a free tier and two paid plans: Pay-As-You-Go (billed per request) and Fixed (a flat monthly price). The numbers below reflect current pricing — see the pricing page for the most up-to-date information.

Free tier

Every account starts with a free database. No credit card required.

Pay-As-You-Go (PAYG)

Billed per request, so you only pay for what you use. Best for variable or low-volume workloads where command volume is unpredictable — caching in serverless functions, edge workloads, and apps that scale to zero. To avoid surprise charges, set a monthly budget on a PAYG database. When the budget is reached the database is rate-limited rather than continuing to bill.

Fixed plans

A flat monthly price with a cap on throughput and data size. Usually cheaper than PAYG for sustained, high-throughput workloads where command count is consistently high and predictable. Worker-heavy setups such as Sidekiq, BullMQ, Celery, and cron jobs are a common fit because they hit Redis continuously even when idle. You can start on PAYG and switch to a Fixed plan later, or vice versa.

All plans and limits

*PAYG bandwidth is free up to 200 GB/month, then $0.03/GB. Enterprise plans support larger data sizes and custom limits — contact us. See Security Features by Plan for which security features each plan includes.

How billing works

  • What counts as a command. Pricing is based on the number of commands (requests) executed. This applies equally to the REST API and to commands made over the Redis protocol. Operational commands such as INFO, PING, and AUTH are not charged. See the pricing FAQ for the full list of exceptions.
  • Monitoring usage. Use the console usage charts for billing and plan usage. INFO reports database activity, not a billing total or remaining monthly quota. See Metrics and Monitoring.
  • Global databases. With Global replication, each write is replicated to every read region, and each replicated write counts as a command for billing. Adding read regions to a Fixed plan costs 50% of the base tier price per region.
  • Storage. On PAYG, storage is billed at $0.25/GB per month with the first 1 GB free. Fixed plans include storage up to the plan’s data-size cap.
  • Prod Pack. Production features (high availability, encryption, SOC-2, advanced monitoring) are available as an add-on for $200/month per database. See Prod Pack & Enterprise.

Optimizing cost

  • On PAYG, a high baseline of background commands (for example, Sidekiq polling) can drive up command count even when there is no real workload — switching to a Fixed plan caps that cost.
  • Prefer pipelines and MULTI/EXEC to reduce round trips; note that each command inside a pipeline or transaction is still billed individually.
  • Set a monthly budget on PAYG databases to bound spend.