Skip to content

Commit

Permalink
update readME
Browse files Browse the repository at this point in the history
  • Loading branch information
mwangox committed Jul 21, 2024
1 parent b05eefe commit 9b8af82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ The following is the list of currently supported storage types, with more to be
Storage type is specified in the configuration file under key `storage_type`. In case the storage type is not specified explicitly it will default to `memory`.
If you want to add your storage implementation that is not available in the list above, just implement the [store](./internal/store/store.go) interface and add it accordingly.

### Available StooKV SDKs
### StooKV SDKs
You can use `StooKV` without the use of these SDKs by simply calling the REST or gRPC APIs using any tool of your choice. If you don't want to bother
with the underlying low-level implementations, you can use any of these based on your preferred language:

Expand All @@ -146,7 +146,7 @@ with the underlying low-level implementations, you can use any of these based on
- Rust: [storus](https://github.com/mwangox/stogo)
- Spring Boot Starter: [stoja-spring-boot-starter](https://github.com/mwangox/stoja-spring-boot-starter) (Java framework)

For those who want to implement their own SDK(s), I recommend using gRPC APIs instead of REST APIs due to their associated benefits. All the SDKs mentioned above
For those who want to implement their own SDK(s), I recommend using gRPC APIs instead of REST APIs due to their high performing nature. All the SDKs mentioned above
use gRPC APIs to interact with the `stookv` instance. Please visit the respective repository for more details on the SDK usage. n

### Secrets Encryption
Expand Down
2 changes: 1 addition & 1 deletion conf/stoo_kv.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"rdbms_default_table": "kv_store",
"encrypt_prefix": "{ENC} ",
"provider_path": "./conf/provider.json",
"grpc_use_tls": true,
"grpc_use_tls": false,
"grpc_server_cert": "/opt/systems/apps/stoo-kv/api/grpc/certs/server_cert.pem",
"grpc_server_key": "/opt/systems/apps/stoo-kv/api/grpc/certs/server_key.pem"
}

0 comments on commit 9b8af82

Please sign in to comment.