Skip to content

Commit 52ce36e

Browse files
committed
Acrolinx fixes
1 parent a7ed749 commit 52ce36e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

articles/azure-cache-for-redis/cache-redis-modules.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ Some popular modules are available for use in the Enterprise tier of Azure Cache
3535
3636

3737
## Using modules with active geo-replication
38-
Only the `RediSearch` and `RedisJSON` modules can be used concurrently with [active geo-replication](cache-how-to-active-geo-replication.md). This allows search and JSON structures to be used on groups of caches that are synchronized in an active-active configuration.
38+
Only the `RediSearch` and `RedisJSON` modules can be used concurrently with [active geo-replication](cache-how-to-active-geo-replication.md).
39+
40+
Using these modules, you can implement searches across groups of caches that are synchronized in an active-active configuration. Also, you can search JSON structures in your active-active configuration.
3941

4042
## Client library support
4143

@@ -92,9 +94,9 @@ RedisBloom adds four probabilistic data structures to a Redis server: **bloom fi
9294

9395
| **Data structure** | **Description** | **Example application**|
9496
| ---------------------|------------------------|-------------------------|
95-
| **Bloom and Cuckoo filters** | Tells you if an item is either (a) certainly not in a set or (b) potentially in a set. | Checking if an email has already been sent to a user|
97+
| **Bloom and Cuckoo filters** | Tells you if an item is either (a) definitely not in a set or (b) potentially in a set. | Checking if an email has already been sent to a user|
9698
|**Count-min sketch** | Determines the frequency of events in a stream | Counting how many times an IoT device reported a temperature under 0 degrees Celsius. |
97-
|**Top-k** | Finds the `k` most frequently seen items | Determine the most frequent words used in War and Peace. (for example, setting k = 50 will return the 50 most common words in the book) |
99+
|**Top-k** | Finds the `k` most frequently seen items | Determine the most frequent words used in War and Peace. (for example, setting k = 50 returns the 50 most common words in the book) |
98100

99101
**Bloom and Cuckoo** filters are similar to each other, but each has a unique set of advantages and disadvantages that are beyond the scope of
100102
this documentation.

0 commit comments

Comments
 (0)