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
```redis Try to duplicate an item already present on bikes
32
+
```redis:[run_confirmation=true] Try to duplicate an item already present on bikes
33
33
PFADD bikes Deimos // returns 0
34
34
```
35
35
@@ -41,7 +41,7 @@ PFCOUNT bikes
41
41
42
42
Now create another HLL called `commuter_bikes`.
43
43
44
-
```redis Create a new HLL set
44
+
```redis:[run_confirmation=true] Create a new HLL set
45
45
PFADD commuter_bikes Salacia Mimas Quaoar
46
46
```
47
47
@@ -51,12 +51,12 @@ PFCOUNT bikes commuter_bikes // returns 6 because Quaoar was present on both HLL
51
51
52
52
Use the `PFMERGE` command to merge two HLLs into a single HLL. Note: if the destination key already contains a HLL, it's data will be part of the merged data.
53
53
54
-
```redis Merge bikes and commuter_bikes
54
+
```redis:[run_confirmation=true] Merge bikes and commuter_bikes
0 commit comments