You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/redis-data-searching/benchmarking.md
+9-14Lines changed: 9 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,17 @@ The `redis-benchmark` tool is an official performance testing utility for Redis.
13
13
### Prerequisites
14
14
Ensure Redis server is running and accessible:
15
15
16
+
```console
17
+
redis-cli ping
18
+
```
19
+
20
+
If you do not see a "PONG" response, please start redis:
21
+
16
22
```console
17
23
redis-server &
18
24
redis-cli ping
19
25
```
26
+
20
27
### Benchmark SET (Write Performance)
21
28
The `SET` benchmark helps validate Redis’s ability to handle high insertion rates efficiently on Arm-based servers.
22
29
@@ -145,26 +152,14 @@ Summary:
145
152
-**p99:** 99th percentile — shows near worst-case latency, key for reliability analysis.
146
153
-**max:** Slowest observed response time (worst case).
147
154
148
-
### Benchmark summary on x86_64
149
-
To compare the benchmark results, the following results were collected by running the same benchmark on a `x86 - c4-standard-4` (4 vCPUs, 15 GB Memory) x86_64 VM in GCP, running SUSE:
| SET | 100,000 | 50 | 0.170 | 0.056 | 0.167 | 0.183 | 0.191 | 1.095 | 149,700.61 | Measures Redis write performance using SET command |
163
161
| GET | 100,000 | 50 | 0.169 | 0.048 | 0.167 | 0.183 | 0.191 | 0.807 | 150,375.94 | Measures Redis read performance using GET command |
164
162
165
-
166
-
### Redis benchmarking comparison on Arm64 and x86_64
167
-
168
163
-**High Efficiency:** Redis achieved over **150K ops/sec** on both read and write workloads, showcasing strong throughput on **Arm64 (C4A)** architecture.
169
164
-**Low Latency:** Average latency remained around **0.17 ms**, demonstrating consistent response times under concurrency.
170
165
-**Balanced Performance:** Both **SET** and **GET** operations showed nearly identical performance, indicating excellent CPU and memory optimization on **Arm64**.
Copy file name to clipboardExpand all lines: content/learning-paths/servers-and-cloud-computing/redis-data-searching/instance.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,18 @@ To create a virtual machine based on the C4A instance type:
26
26
27
27

28
28
29
-
- Under **OS and Storage**, select **Change**, then choose an Arm64-based OS image. For this Learning Path, use **SUSE Linux Enterprise Server**. Pick the preferred version for your Operating System. Ensure you select the **Arm image** variant. Click **Select**.
29
+
30
+
- Under **OS and Storage**, select **Change**, then choose an Arm64-based OS image. For this Learning Path, use **SUSE Linux Enterprise Server**.
31
+
- If using use **SUSE Linux Enterprise Server**. Select "Pay As You Go" for the license type.
32
+
- Once appropriately selected, please Click **Select**.
30
33
- Under **Networking**, enable **Allow HTTP traffic**.
31
34
- Click **Create** to launch the instance.
35
+
- Once created, you should see a "SSH" option to the right in your list of VM instances. Click on this to launch a SSH shell into your VM instance:
36
+
37
+

38
+
39
+
- A window from your browser should come up and you should now see a shell into your VM instance:
40
+
41
+

0 commit comments