Skip to content

Commit 6728c84

Browse files
authored
Update cache-best-practices-performance.md
1 parent 5241746 commit 6728c84

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

articles/azure-cache-for-redis/cache-best-practices-performance.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,19 @@ Pipelined GET requests with 1k payload:
7171
```dos
7272
redis-benchmark -h yourcache.redis.cache.windows.net -a yourAccesskey -t GET -n 1000000 -d 1024 -P 50 -c 50
7373
```
74+
75+
**To test throughput of a Basic, Standard, or Premium tier cache using TLS:**
76+
Pipelined GET requests with 1k payload:
77+
```dos
78+
redis-benchmark -h yourcache.redis.cache.windows.net -p 6380 -a yourAccesskey -t GET -n 1000000 -d 1024 -P 50 -c 50 --tls
79+
```
80+
81+
**To test throughput of an Enterprise or Enterprise Flash cache without TLS using OSS Cluster Mode:**
82+
Pipelined GET requests with 1k payload:
83+
```dos
84+
redis-benchmark -h yourcache.region.redisenterprise.cache.azure.net -p 10000 -a yourAccesskey -t GET -n 1000000 -d 1024 -P 50 -c 50 --cluster
85+
```
86+
7487
## Example performance benchmark data
7588

7689
The following tables show the maximum throughput values that were observed while testing various sizes of Standard, Premium, Enterprise, and Enterprise Flash caches. We used `redis-benchmark` from an IaaS Azure VM against the Azure Cache for Redis endpoint. The throughput numbers are only for GET commands. Typically, SET commands have a lower throughput. These numbers are optimized for throughput. Real-world throughput under acceptable latency conditions may be lower.
@@ -110,7 +123,11 @@ redis-benchmark -h yourcache.redis.cache.windows.net -a yourAccesskey -t GET -n
110123
> [!Important]
111124
> P5 instances in the China East and China North regions use 20 cores, not 32 cores.
112125
113-
### Enterprise tier
126+
### Enterprise tier - Enterprise Cluster Policy
127+
128+
> [!IMPORTANT]
129+
> The Enterprise and Enterprise Flash tiers offer a choice of cluster policy: _Enterprise_ and _OSS_.
130+
114131
| Instance | Size | vCPUs | Network bandwidth (Mbps)| GET requests per second without SSL (1 kB value size) | GET requests per second with SSL (1 kB value size) |
115132
| --- | --- | --- | --- | --- | --- |
116133
| P1 | 6 GB | 2 | 1,500 | 180,000 | 172,000 |
@@ -119,6 +136,7 @@ redis-benchmark -h yourcache.redis.cache.windows.net -a yourAccesskey -t GET -n
119136
| P4 | 53 GB | 8 | 6,000 | 400,000 | 373,000 |
120137
| P5 | 120 GB | 32 | 6,000 | 400,000 | 373,000 |
121138

139+
### Enterprise tier - OSS Cluster Policy
122140
123141
## Next steps
124142

0 commit comments

Comments
 (0)