Skip to content

Commit

Permalink
Remove --enable-multithreading flag usage in README (#1349)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-mallick-15 authored Dec 3, 2024
1 parent a60515c commit 6aae69b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Although DiceDB is a drop-in replacement of Redis, which means almost no learnin
The easiest way to get started with DiceDB is using [Docker](https://www.docker.com/) by running the following command.

```bash
docker run -p 7379:7379 dicedb/dicedb --enable-multithreading --enable-watch
docker run -p 7379:7379 dicedb/dicedb --enable-watch
```

The above command will start the DiceDB server running locally on the port `7379` and you can connect
Expand All @@ -60,10 +60,10 @@ To run DiceDB for local development or running from source, you will need
```bash
git clone https://github.com/dicedb/dice
cd dice
go run main.go --enable-multithreading --enable-watch
go run main.go --enable-watch
```

You can skip passing the two flags if you are not working with multi-threading or `.WATCH` features.
You can skip passing the flag if you are not working with `.WATCH` feature.

1. Install GoLangCI

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/get-started/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ We are looking for Early Design Partners, so, if you want to evaluate DiceDB, [b
The easiest way to get started with DiceDB is using [Docker](https://www.docker.com/) by running the following command.

```bash
docker run -p 7379:7379 dicedb/dicedb --enable-multithreading --enable-watch
docker run -p 7379:7379 dicedb/dicedb --enable-watch
```

The above command will start the DiceDB server running locally on the port `7379` and you can connect
Expand Down
6 changes: 3 additions & 3 deletions docs/src/content/docs/get-started/reactive-hello-world.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ But, before we start, make sure you have

### Starting DiceDB

Start the DiceDB server with the two flags `--enable-multithreading` and `--enable-watch`
to enable multi-threading and watch mode, respectively. Your command would look something
Start the DiceDB server with the flag `--enable-watch`
to enable watch mode. Your command would look something
like this

```bash
docker run -p 7379:7379 dicedb/dicedb --enable-multithreading --enable-watch
docker run -p 7379:7379 dicedb/dicedb --enable-watch
```

Also, connect to the database using the CLI as mentioned in the above installation steps or
Expand Down

0 comments on commit 6aae69b

Please sign in to comment.