Skip to content
View deborahc's full-sized avatar
  • Microsoft

Organizations

@microsoft

Block or report deborahc

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. cosmos-perf-tips cosmos-perf-tips Public

    This repository contains a demo of several performance optimization tips with Azure Cosmos DB.

    C# 44 21

  2. ContosoRepo ContosoRepo Public

    This repo contains the notebooks used in the Build 2020 session INT125 Building scalable and secure applications with Azure Cosmos DB.

    Jupyter Notebook 3 7

  3. Getting started with Azure Cosmos DB... Getting started with Azure Cosmos DB .NET V3 SDK (GA)
    1
    using Microsoft.Azure.Cosmos;
    2
    using System;
    3
    using System.Threading.Tasks;
    4
    
                  
    5
    //Getting started with .NET SDK V3
  4. Scale throughput of a container in A... Scale throughput of a container in Azure Cosmos DB .NET SDK V3 (GA)
    1
    // Scaling throughput (RU/s) using V3 SDK
    2
    static async Task ScaleThroughputDemo_SDKVersion3()
    3
    {
    4
        // Get reference to container
    5
        var container = cosmosClient.GetContainer(databaseId, containerId);
  5. Scaling a non-partitioned (fixed) co... Scaling a non-partitioned (fixed) container) with Azure Cosmos DB .NET V3 SDK (GA)
    1
    // Scale fixed container using partition key in .NET V3 SDK
    2
    public static async Task ScaleNonPartitionedContainer()
    3
    {    
    4
        using (var cosmosClient = new CosmosClient(endpoint, key))
    5
        {
  6. azure-docs azure-docs Public

    Forked from MicrosoftDocs/azure-docs

    PowerShell