Zhiwei Liu
Zhiwei Liu
In https://stackexchange.github.io/StackExchange.Redis/Configuration.html keepAlive={int} | KeepAlive | -1 | Time (seconds) at which to send a message to help keep sockets alive (60 sec default) -- | -- | -- |...
In section https://docs.microsoft.com/en-us/dotnet/core/diagnostics/metrics-instrumentation#types-of-instruments, for UpDownCounter, it should be created by **CreateUpDownCounter** instead of **CreateCounter**, the method link is https://docs.microsoft.com/en-us/dotnet/api/system.diagnostics.metrics.meter.createupdowncounter?view=net-7.0. --- #### Document Details ⚠ *Do not edit this section. It...
[Enter feedback here] In section https://docs.microsoft.com/en-us/azure/azure-cache-for-redis/cache-how-to-redis-cli-tool#enable-access-for-redis-cliexe > With Azure Cache for Redis, only the TLS port (6380) is enabled by default. The redis-cli.exe command-line tool doesn't support TLS. The redis-cli...
I deployed a pod with following yaml ``` apiVersion: v1 kind: Pod metadata: name: memtest spec: containers: - name: test image: mcr.microsoft.com/windows/servercore:ltsc2019 command: ["PowerShell", "while($true) { sleep 999 }"] ```...
In KubernetesClientConfiguration.IsInCluster, it uses service account token file as one check condition. ``` var tokenPath = Path.Combine(ServiceAccountPath, ServiceAccountTokenKeyFileName); if (!FileSystem.Current.Exists(tokenPath)) { return false; } ``` When set automountServiceAccountToken false(https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#opt-out-of-api-credential-automounting), there...