Vinit Parekh
Vinit Parekh
Dropdown does not working with tailwindcss
When user comes back to the root route then it will be redirected to dashboard, if this approach doesn't sound nice then we should simply replace or remove the login...
# This PR resolves the issue #421 ## 1. sub-command: init-config > Usage: > > ```bash > go run main.go init-config > ``` it will generate [default config](https://github.com/vinitparekh17/dice/blob/issue-421/dice.conf) file at...
This PR introduce more structured way of using config in DiceDB ## 1 introducing installation script: - creates appropriate user grp, files and folder to support configuration. - reduce user...
`-requirepass` flag is being ignored if db starts as ```go go run main.go -requirepass mysecret ``` Meanwhile prioritised if db starts with config flags -init-config, -c and -o `config.DiceConfig.auth.UserName` is...
### This PR resolves the auth vulnerability 1. merges flag value to the global config object in order to prioritize `-requirepass` flag 2. shows warning if dice starts without password...
## Steps to reproduce ```sh curl --location 'http://localhost:8082/set' \ --header 'Content-Type: application/json' \ --header 'Cache-Control: no-cache' \ --data '{ "key": "foo", "value": { "foo": { "bar": "fooBar" } } }'...
## Why this issue should not be ignored? - Since `DiceDB` expects input in valid JSON format, so does the client. This ensures that both the client and server can...
> [!NOTE] > This issue is meant to be resolved after stable implementation of multiple threading architecture as per community’s decision [(ref)](https://github.com/DiceDB/dice/pull/684#issuecomment-2367830850) currently dumping data to aof file during graceful...
Unlike redis this is gonna be important feature for Dice ## 1. KeepAlive: ### Why is it important? - To Detect dead or unresponsive connections - To Prevent idle connections...