Microsoft.Extensions.Caching.Cosmos icon indicating copy to clipboard operation
Microsoft.Extensions.Caching.Cosmos copied to clipboard

Distributed cache implemented with Azure Cosmos DB

Results 4 Microsoft.Extensions.Caching.Cosmos issues
Sort by recently updated
recently updated
newest added

There seems to be no way to use the Options pattern, and default azure credentials. I have a section in `appSettings.json` as such: ```json "CosmosCache": { "AccountEndpoint": "https://azure.url:443", "ContainerName": "containerName",...

**Is your feature request related to a problem? Please describe.** This is to avoid race conditions for writing a cache value from two places with conflicting values. **Describe the solution...

enhancement
needs-investigation

Reference https://github.com/Azure/Microsoft.Extensions.Caching.Cosmos/issues/51 Rename the property and use it as-is, without any conversion.

vNext

Also includes another fix for https://github.com/Azure/Microsoft.Extensions.Caching.Cosmos/issues/83 `TotalSeconds` is a `double` so the value could be `0` but could also be `0.3` which when converted to `int` is `0` and could...