We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0540794 commit 1ed1e0eCopy full SHA for 1ed1e0e
src/ds/hashes.md
@@ -22,13 +22,13 @@ HGET bike:1 price
22
23
You can update fields in a hash using `HSET` by specifying a subset of its name-value pairs.
24
25
-```redis Update an existing hash
+```redis:[run_confirmation=true] Update an existing hash
26
HSET bike:1 model "Kraken" price 3000
27
```
28
29
Use the `HDEL` command to delete one or more fields from a hash. Once all fields are removed, the hash key itself will be deleted.
30
31
-```redis Delete hash fields and keys
+```redis:[run_confirmation=true] Delete hash fields and keys
32
HDEL bike:1 model
33
HGETALL bike:1
34
HDEL bike:1 brand type price
0 commit comments