Senthil Nathan N

Results 35 issues of Senthil Nathan N

Replace `server.replication.walDir , `server.replication.snapDir and `server.replication.auxDir with single `server.replication.raft`. Then, internally create other directories such as `walDir`, `snapDir`, and `auxDir`. For performance, consider allowing overrides for walDir, snapDir, and auxDir...

We have config files in `pkg/config`, `sampleconfig`, and `deployment/sample`. We need to ensure that all config files are in sync.

usability

In the marshalled output, we see 0, 1, 2 and so on for enums. This makes readability a bit hard. It is better to use enum string in permissions, types,...

usability
readability

We want to check the query syntax at the sdk too. Hence, we can move the query syntax checker from the `internal/queryexecutor` to the `internal/pkg` so that both repo can...

query support

Now, we find all keys matching a given query criteria. Then, we retrieve the value of each key and check ACL. This is inefficient. To make it efficient, we can...

For read and write privileges, we use 0 and 1, respectively. This is not readable in the JSON output. Hence, we should use a string-based enum to make it expressive...

usability

When we have a default value for fields in the proto message, the JSON marshal does not include the field in the output due to `omitempty`. For example, when we...

usability