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
This command involves deleting files from the S3 bucket. To achieve this you simply need to type in the file name in the search bar and Reeko will pull up the file as demonstrated below.
353
353
354
-
You’ll have the option to permanently delete the file from the S3 bucket. The file data is deleted from Redis using the JSON.DEL command and is removed from RediSearch's suggestions using the `FT.SUGDEL` command. You’ll be informed when the file is deleted.
354
+
You’ll have the option to permanently delete the file from the S3 bucket. The file data is deleted from Redis using the JSON.DEL command and is removed from Search suggestions using the `FT.SUGDEL` command. You’ll be informed when the file is deleted.
Have you ever searched for a file without being entirely sure what it is you’re looking for? You may remember snippets of the content but not enough to manually track down its location. Well due to RediSearch’s autocomplete functionality this will no longer be a problem.
364
+
Have you ever searched for a file without being entirely sure what it is you’re looking for? You may remember snippets of the content but not enough to manually track down its location. Well due to Search’s autocomplete functionality this will no longer be a problem.
365
365
366
366
#### /s3-search
367
367
@@ -428,7 +428,7 @@ class RedisSearchConnector():
428
428
self.ac = AutoCompleter(self.index_name)
429
429
```
430
430
431
-
Use the following code to initialise RedisJSON in redisjson_connector.py.
431
+
Use the following code to initialise Redis JSON in redisjson_connector.py.
Copy file name to clipboardExpand all lines: docs/create/homebrew/index-homebrew.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ Since the metrics are collected with a millisecond timestamp, we can compact our
123
123
124
124
### Step 8. Time series compaction
125
125
126
-
RedisTimeSeries supports downsampling with the following aggregations: avg, sum, min, max, range, count, first and last. If you want to keep all of your raw data points indefinitely, your data set grows linearly over time. However, if your use case allows you to have less fine-grained data further back in time, downsampling can be applied. This allows you to keep fewer historical data points by aggregating raw data for a given time window using a given aggregation function.
126
+
Redis Time Series supports downsampling with the following aggregations: avg, sum, min, max, range, count, first and last. If you want to keep all of your raw data points indefinitely, your data set grows linearly over time. However, if your use case allows you to have less fine-grained data further back in time, downsampling can be applied. This allows you to keep fewer historical data points by aggregating raw data for a given time window using a given aggregation function.
Copy file name to clipboardExpand all lines: docs/create/netlify/getting-started-with-netlify/index-getting-started-with-netlify.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ In this tutorial, you will see how to deploy a simple Redis caching app built wi
52
52
53
53
### Step 1. Setup a free Redis Enterprise Cloud account
54
54
55
-
Visit [https://developer.redis.com/create/rediscloud/](https://developer.redis.com/create/rediscloud/) and create a free Redis Enterprise Cloud account. Enable the “RediSearch” module while you create the Redis Enterprise Cloud database. Once you complete the tutorial, you will be provided with the database Endpoint URL and password. Save it for future reference.
55
+
Visit [https://developer.redis.com/create/rediscloud/](https://developer.redis.com/create/rediscloud/) and create a free Redis Enterprise Cloud account. Select a “Redis Stack" database when you create the Redis Enterprise Cloud database. Once you complete the tutorial, you will be provided with the database Endpoint URL and password. Save it for future reference.
56
56
57
57
:::tip
58
58
For a limited time, use **TIGER200** to get **$200** credits on Redis Enterprise Cloud and try all the advanced capabilities!
Copy file name to clipboardExpand all lines: docs/create/redis-stack/index-redis-stack.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ In addition to all of the features of OSS Redis, Redis Stack supports:
30
30
31
31
Redis Stack is made up of several components, licensed as follows:
32
32
33
-
- Redis Stack Server combines open source Redis with RediSearch, RedisJSON RedisGraph, RedisTimeSeries and RedisBloom is licensed under the [Redis Source Available License](https://github.com/RediSearch/RediSearch/blob/master/LICENSE) (RSAL).
33
+
- Redis Stack Server combines open source Redis with Search, JSON, Time Series and Probabilistic data structures is licensed under the [Redis Source Available License](https://redis.com/legal/licenses/) (RSAL).
34
34
- RedisInsight is licensed under the [Server Side Public License](https://en.wikipedia.org/wiki/Server_Side_Public_License) (SSPL).
35
35
36
36
### Which client libraries support Redis Stack?
@@ -253,7 +253,7 @@ Since the metrics are collected with a millisecond timestamp, we can compact our
253
253
254
254
### Step 8. Time series Aggregations
255
255
256
-
RedisTimeSeries supports downsampling with the following aggregations: avg, sum, min, max, range, count, first and last. If you want to keep all of your raw data points indefinitely, your data set grows linearly over time. However, if your use case allows you to have less fine-grained data further back in time, downsampling can be applied. This allows you to keep fewer historical data points by aggregating raw data for a given time window using a given aggregation function.
256
+
Redis Time Series supports downsampling with the following aggregations: avg, sum, min, max, range, count, first and last. If you want to keep all of your raw data points indefinitely, your data set grows linearly over time. However, if your use case allows you to have less fine-grained data further back in time, downsampling can be applied. This allows you to keep fewer historical data points by aggregating raw data for a given time window using a given aggregation function.
257
257
258
258
#### Example:
259
259
@@ -313,19 +313,19 @@ By default, the Redis Stack Docker containers use internal configuration files f
313
313
To pass in arbitrary configuration changes, you can set any of these environment variables:
314
314
315
315
-`REDIS_ARGS`: extra arguments for Redis
316
-
-`REDISEARCH_ARGS`: arguments for RediSearch
317
-
-`REDISJSON_ARGS`: arguments for RedisJSON
318
-
-`REDISGRAPH_ARGS`: arguments for RedisGraph
319
-
-`REDISTIMESERIES_ARGS`: arguments for RedisTimeSeries
320
-
-`REDISBLOOM_ARGS`: arguments for RedisBloom
316
+
-`REDISEARCH_ARGS`: arguments for Search
317
+
-`REDISJSON_ARGS`: arguments for JSON
318
+
-`REDISGRAPH_ARGS`: arguments for Graph
319
+
-`REDISTIMESERIES_ARGS`: arguments for Time Series
320
+
-`REDISBLOOM_ARGS`: arguments for Probabilistic Data Structures
321
321
322
322
For example, here’s how to use the `REDIS_ARGS` environment variable to pass the `requirepass` directive to Redis:
323
323
324
324
```
325
325
docker run -e REDIS_ARGS="--requirepass redis-stack" redis/redis-stack:latest
326
326
```
327
327
328
-
Here’s how to set a retention policy for RedisTimeSeries:
328
+
Here’s how to set a retention policy for Redis Time Series:
329
329
330
330
```
331
331
docker run -e REDISTIMESERIES_ARGS="RETENTION_POLICY=20" redis/redis-stack:latest
Copy file name to clipboardExpand all lines: docs/develop/java/getting-started/index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ Use these commands to setup a Redis server locally on Mac OS:
39
39
```
40
40
41
41
:::info INFO
42
-
Redis Stack unifies and simplifies the developer experience of the leading Redis modules and the capabilities they provide. Redis Stack bundles five Redis modules: RedisJSON, RedisSearch, RedisGraph, RedisTimeSeries, and RedisBloom.
42
+
Redis Stack unifies and simplifies the developer experience of the leading Redis modules and the capabilities they provide. Redis Stack provides the following in addition to Redis Open Source: JSON, Search, Time Series, and Probabilistic data structures.
43
43
[Learn more](/create/redis-stack)
44
44
:::
45
45
@@ -167,7 +167,7 @@ Check out a few of these apps below, or [click here to access the complete list]
167
167
168
168

169
169
170
-
[Movie Database app in Java](http://launchpad.redis.com/?id=project%3Ademo-movie-app-redisearch-java) based on RediSearch capabilities
170
+
[Movie Database app in Java](http://launchpad.redis.com/?id=project%3Ademo-movie-app-redisearch-java) based on Search capabilities
171
171
172
172
</div>
173
173
</div>
@@ -255,7 +255,7 @@ As developer you can use the Java client library directly in your application, o
0 commit comments