You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To improve performance in retrieving tenant information from a remote service, we can use gRPC as well. Integrating built-in gRPC support, such as .WithGrpcRemoteStore, will enhance the developer experience and streamline the process.
Current HTTP implementation: ... .WithHttpRemoteStore(string.Concat(tenancyUrl, "{__tenant__}/remote-store"), httpClientBuilder => ...
To improve performance in retrieving tenant information from a remote service, we can use gRPC as well. Integrating built-in gRPC support, such as
.WithGrpcRemoteStore
, will enhance the developer experience and streamline the process.Current HTTP implementation:
... .WithHttpRemoteStore(string.Concat(tenancyUrl, "{__tenant__}/remote-store"), httpClientBuilder => ...
Proposed gRPC Implementation:
... .WithGrpcRemoteStore(tenancyUrl, grpcClientBuilder => ...
The text was updated successfully, but these errors were encountered: