Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Redis Community Edition - Install using Homebrew Cask
## Redis Open Source - Install using Homebrew Cask

To install the latest version of Redis Community Edition using Homebrew Cask, please use the following command:
To install the latest version of Redis Open Source using Homebrew Cask, please use the following command:

```bash
brew tap redis/redis
Expand All @@ -14,6 +14,10 @@ brew tap redis/redis
brew install --cask redis-rc
```

#### Note: Configuration File Conflicts
If you previously installed Redis using the standard Homebrew formula `brew install redis` and later removed it, the configuration file may still remain at `$(brew --prefix)/etc/redis.conf`. When installing Redis via the cask method `brew install --cask redis`, this existing configuration file will not be automatically replaced.
To avoid potential conflicts or unexpected behavior, ensure you remove any leftover configuration files from previous Redis installations before installing the cask version

## Supported Operating Systems

Redis officially tests the latest version of this distribution against the following OSes:
Expand All @@ -30,6 +34,8 @@ After installation, you can start Redis in the background using the following co
redis-server $(brew --prefix)/etc/redis.conf
```



To stop the service:

```bash
Expand Down