Skip to content

Commit f6d2017

Browse files
committed
Apply suggestions from code review
1 parent d4f3a13 commit f6d2017

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

content/operate/oss_and_stack/install/archive/install-redis/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,7 @@ Make sure that everything is working as expected:
159159
4. If it's a new machine where you can try it without problems, make sure that after a reboot everything is still working.
160160
161161
{{% alert title="Note" color="warning" %}}
162-
The above instructions don't include all of the Redis configuration parameters that you could change. For example, to use AOF persistence instead of RDB persistence, or to set up replication, and so forth.
162+
The above instructions don't include all of the Redis configuration parameters that you could change. For example, to use AOF persistence instead of RDB persistence, or to set up replication, and so forth. Further details can be found in the [configuration article on this site]({{< relref "/operate/oss_and_stack/management/config" >}}).
163163
{{% /alert %}}
164164
165-
You should also read the example [redis.conf]({{< relref "/operate/oss_and_stack/management/config-file" >}}) file, which is heavily annotated to help guide you on making changes. Further details can also be found in the [configuration article on this site]({{< relref "/operate/oss_and_stack/management/config" >}}).
166-
167165
<hr>

content/operate/oss_and_stack/management/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ development purposes.
1919
The proper way to configure Redis is by providing a Redis configuration file,
2020
usually called `redis.conf`. Beginning with Redis 8 in Redis Open Source, there are two configuration files:
2121
* `redis.conf` - contains the configuration settings for Redis server only.
22-
* `redis-full.conf` - contains configuration settings for Redis server and all available components: Redis Query Engine, Redis time series, and Redis probabilistic data structures. Note: `redis-full.conf` has as its first line `include redis.conf`, which pulls in the Redis server configuration settings at startup. You can use `redis-full.conf` if you want to use all available components.
22+
* `redis-full.conf` - contains configuration settings for Redis server and all available components: Redis Query Engine, Redis time series, and Redis probabilistic data structures. This file has as its first line `include redis.conf`, which pulls in the Redis server configuration settings at startup. Use `redis-full.conf` when you want to enable all available components. The file contains four `loadmodule` directives, one for each component, and also loads Redis JSON (though JSON has no configuration parameters).
2323

2424
If you are building Redis from source and choose to build Redis server without the available components, you can use `redis.conf` as your configuration file.
2525

0 commit comments

Comments
 (0)