---
name: databases-for-redis-learn-performance
title: Performance
description: IBM Cloud&reg; Databases for Redis deployments deployments can be both manually scaled to your usage, or configured to autoscale under certain resource conditions. If you are tuning the performance of your deployment, consider a few factors.
last-updated: 2026-06-04
---

> ## Documentation Index
> The table of contents for this documentation set is at https://cloud.ibm.com/docs/databases-for-redis?format=markdown
> The index for all IBM Cloud docs is at: https://cloud.ibm.com/docs/llms.txt
> Use these files to discover more information as needed.

# Performance
{: #performance}

IBM Cloud&reg; Databases for Redis deployments deployments can be both manually [scaled to your usage](https://cloud.ibm.com/docs/databases-for-redis?topic=databases-for-redis-resources-scaling&format=markdown), or configured to [autoscale](https://cloud.ibm.com/docs/databases-for-redis?topic=databases-for-redis-autoscaling&format=markdown) under certain resource conditions. If you are tuning the performance of your deployment, consider a few factors.

## Monitoring your deployment
{: #monitor-deployment}

Databases for Redis deployments offer an integration with the [IBM Cloud&reg; Monitoring service](https://cloud.ibm.com/docs/databases-for-redis?topic=databases-for-redis-monitoring&format=markdown) for basic monitoring of resource usage on your deployment. Many of the available metrics, like disk usage and IOPS, are presented to help you configure [autoscaling](https://cloud.ibm.com/docs/databases-for-redis?topic=databases-for-redis-autoscaling&format=markdown) on your deployment. Observing trends in your usage and configuring the autoscaling to respond to them can help alleviate performance problems before your databases become unstable due to resource exhaustion.

## Memory policies
{: #mem-policies}

By default, deployments are configured with a `noeviction` policy. All data is kept in memory until the `maxmemory` limit is reached and Redis returns an error if the memory limit is exceeded. The `maxmemory` is set to 80% of a data node's available memory, so your node doesn't run out of system resources.

You can scale the amount of memory to accommodate more data, and you can configure the `maxmemory` setting to tune memory usage. The [Redis documentation](https://redis.io/topics/memory-optimization#memory-allocation){: external} has some good information on memory behavior and tuning `maxmemory`.

You can also configure your deployment to use [Redis as a cache](https://cloud.ibm.com/docs/databases-for-redis?topic=databases-for-redis-redis-cache&format=markdown), allowing Redis to evict data out of memory once the memory limit is reached.

## Disk IOPS
{: #disk-iops}

The number of Input-Output Operations per second (IOPS) is limited by the type of storage volume. Storage volumes for Databases for Redis deployments are provisioned on [Block Storage Endurance Volumes in the 10 IOPS per GB tier](https://cloud.ibm.com/docs/BlockStorage?topic=BlockStorage-orderingBlockStorage&format=markdown). By default, a deployment starts with persistence enabled. It's possible for very busy databases to exceed the IOPS for the disk size, and increasing disk can alleviate a performance bottleneck.