--- type: docs title: "How-To: Save and get state" linkTitle: "How-To: Save & get state" weight: 200 description: "Use key value pairs to persist a state" --- State management is one of the most common needs of any new, legacy, monolith, or microservice application. Dealing with and testing different database libraries and handling retries and faults can be both difficult and time consuming. In this guide, you'll learn the basics of using the key/value state API to allow an application to save, get, and delete state. ## Example The code example below _loosely_ describes an application that processes orders with an order processing service which has a Dapr sidecar. The order processing service uses Dapr to store state in a Redis state store. Diagram showing state management of example service ## Set up a state store A state store component represents a resource that Dapr uses to communicate with a database. For the purpose of this guide we'll use a Redis state store, but any state store from the [supported list]({{< ref supported-state-stores >}}) will work. {{< tabs "Self-Hosted (CLI)" Kubernetes>}} {{% codetab %}} When you run `dapr init` in self-hosted mode, Dapr creates a default Redis `statestore.yaml` and runs a Redis state store on your local machine, located: - On Windows, under `%UserProfile%\.dapr\components\statestore.yaml` - On Linux/MacOS, under `~/.dapr/components/statestore.yaml` With the `statestore.yaml` component, you can easily swap out underlying components without application code changes. {{% /codetab %}} {{% codetab %}} To deploy this into a Kubernetes cluster, fill in the `metadata` connection details of your [state store component]({{< ref supported-state-stores >}}) in the YAML below, save as `statestore.yaml`, and run `kubectl apply -f statestore.yaml`. ```yaml apiVersion: dapr.io/v1alpha1 kind: Component metadata: name: statestore spec: type: state.redis version: v1 metadata: - name: redisHost value: localhost:6379 - name: redisPassword value: "" ``` See [how to setup different state stores on Kubernetes]({{< ref "setup-state-store" >}}). {{% /codetab %}} {{< /tabs >}} {{% alert title="Important" color="warning" %}} Set an `app-id`, as the state keys are prefixed with this value. If you don't set an `app-id`, one is generated for you at runtime. The next time you run the command, a new `app-id` is generated and you will no longer have access to the previously saved state. {{% /alert %}} ## Save and retrieve a single state The following example shows how to save and retrieve a single key/value pair using the Dapr state management API. {{< tabs ".NET" Java Python Go JavaScript "HTTP API (Bash)" "HTTP API (PowerShell)">}} {{% codetab %}} ```csharp //dependencies using System; using System.Collections.Generic; using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; using Dapr.Client; using Microsoft.AspNetCore.Mvc; using System.Threading; using System.Text.Json; //code namespace EventService { class Program { static async Task Main(string[] args) { string DAPR_STORE_NAME = "statestore"; while(true) { System.Threading.Thread.Sleep(5000); using var client = new DaprClientBuilder().Build(); Random random = new Random(); int orderId = random.Next(1,1000); //Using Dapr SDK to save and get state await client.SaveStateAsync(DAPR_STORE_NAME, "order_1", orderId.ToString()); await client.SaveStateAsync(DAPR_STORE_NAME, "order_2", orderId.ToString()); var result = await client.GetStateAsync(DAPR_STORE_NAME, "order_1"); Console.WriteLine("Result after get: " + result); } } } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 dotnet run ``` {{% /codetab %}} {{% codetab %}} ```java //dependencies import io.dapr.client.DaprClient; import io.dapr.client.DaprClientBuilder; import io.dapr.client.domain.State; import io.dapr.client.domain.TransactionalStateOperation; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import reactor.core.publisher.Mono; import java.util.Random; import java.util.concurrent.TimeUnit; //code @SpringBootApplication public class OrderProcessingServiceApplication { private static final Logger log = LoggerFactory.getLogger(OrderProcessingServiceApplication.class); private static final String STATE_STORE_NAME = "statestore"; public static void main(String[] args) throws InterruptedException{ while(true) { TimeUnit.MILLISECONDS.sleep(5000); Random random = new Random(); int orderId = random.nextInt(1000-1) + 1; DaprClient client = new DaprClientBuilder().build(); //Using Dapr SDK to save and get state client.saveState(STATE_STORE_NAME, "order_1", Integer.toString(orderId)).block(); client.saveState(STATE_STORE_NAME, "order_2", Integer.toString(orderId)).block(); Mono> result = client.getState(STATE_STORE_NAME, "order_1", String.class); log.info("Result after get" + result); } } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 mvn spring-boot:run ``` {{% /codetab %}} {{% codetab %}} ```python #dependencies import random from time import sleep import requests import logging from dapr.clients import DaprClient from dapr.clients.grpc._state import StateItem from dapr.clients.grpc._request import TransactionalStateOperation, TransactionOperationType #code logging.basicConfig(level = logging.INFO) DAPR_STORE_NAME = "statestore" while True: sleep(random.randrange(50, 5000) / 1000) orderId = random.randint(1, 1000) with DaprClient() as client: #Using Dapr SDK to save and get state client.save_state(DAPR_STORE_NAME, "order_1", str(orderId)) result = client.get_state(DAPR_STORE_NAME, "order_1") logging.info('Result after get: ' + result.data.decode('utf-8')) ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 -- python3 OrderProcessingService.py ``` {{% /codetab %}} {{% codetab %}} ```go // dependencies import ( "context" "log" "math/rand" "strconv" "time" dapr "github.com/dapr/go-sdk/client" ) // code func main() { const STATE_STORE_NAME = "statestore" rand.Seed(time.Now().UnixMicro()) for i := 0; i < 10; i++ { orderId := rand.Intn(1000-1) + 1 client, err := dapr.NewClient() if err != nil { panic(err) } defer client.Close() ctx := context.Background() err = client.SaveState(ctx, STATE_STORE_NAME, "order_1", []byte(strconv.Itoa(orderId)), nil) if err != nil { panic(err) } result, err := client.GetState(ctx, STATE_STORE_NAME, "order_1", nil) if err != nil { panic(err) } log.Println("Result after get:", string(result.Value)) time.Sleep(2 * time.Second) } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 go run OrderProcessingService.go ``` {{% /codetab %}} {{% codetab %}} ```javascript //dependencies import { DaprClient, HttpMethod, CommunicationProtocolEnum } from '@dapr/dapr'; //code const daprHost = "127.0.0.1"; var main = function() { for(var i=0;i<10;i++) { sleep(5000); var orderId = Math.floor(Math.random() * (1000 - 1) + 1); start(orderId).catch((e) => { console.error(e); process.exit(1); }); } } async function start(orderId) { const client = new DaprClient({ daprHost, daprPort: process.env.DAPR_HTTP_PORT, communicationProtocol: CommunicationProtocolEnum.HTTP, }); const STATE_STORE_NAME = "statestore"; //Using Dapr SDK to save and get state await client.state.save(STATE_STORE_NAME, [ { key: "order_1", value: orderId.toString() }, { key: "order_2", value: orderId.toString() } ]); var result = await client.state.get(STATE_STORE_NAME, "order_1"); console.log("Result after get: " + result); } function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } main(); ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 npm start ``` {{% /codetab %}} {{% codetab %}} Launch a Dapr sidecar: ```bash dapr run --app-id orderprocessing --dapr-http-port 3601 ``` In a separate terminal, save a key/value pair into your statestore: ```bash curl -X POST -H "Content-Type: application/json" -d '[{ "key": "order_1", "value": "250"}]' http://localhost:3601/v1.0/state/statestore ``` Now get the state you just saved: ```bash curl http://localhost:3601/v1.0/state/statestore/order_1 ``` Restart your sidecar and try retrieving state again to observe that state persists separately from the app. {{% /codetab %}} {{% codetab %}} Launch a Dapr sidecar: ```bash dapr --app-id orderprocessing --dapr-http-port 3601 run ``` In a separate terminal, save a key/value pair into your statestore: ```powershell Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '[{"key": "order_1", "value": "250"}]' -Uri 'http://localhost:3601/v1.0/state/statestore' ``` Now get the state you just saved: ```powershell Invoke-RestMethod -Uri 'http://localhost:3601/v1.0/state/statestore/order_1' ``` Restart your sidecar and try retrieving state again to observe that state persists separately from the app. {{% /codetab %}} {{< /tabs >}} ## Delete state Below are code examples that leverage Dapr SDKs for deleting the state. {{< tabs ".NET" Java Python Go JavaScript "HTTP API (Bash)" "HTTP API (PowerShell)">}} {{% codetab %}} ```csharp //dependencies using Dapr.Client; //code namespace EventService { class Program { static async Task Main(string[] args) { string DAPR_STORE_NAME = "statestore"; //Using Dapr SDK to delete the state using var client = new DaprClientBuilder().Build(); await client.DeleteStateAsync(DAPR_STORE_NAME, "order_1", cancellationToken: cancellationToken); } } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 dotnet run ``` {{% /codetab %}} {{% codetab %}} ```java //dependencies import io.dapr.client.DaprClient; import io.dapr.client.DaprClientBuilder; import org.springframework.boot.autoconfigure.SpringBootApplication; //code @SpringBootApplication public class OrderProcessingServiceApplication { public static void main(String[] args) throws InterruptedException{ String STATE_STORE_NAME = "statestore"; //Using Dapr SDK to delete the state DaprClient client = new DaprClientBuilder().build(); String storedEtag = client.getState(STATE_STORE_NAME, "order_1", String.class).block().getEtag(); client.deleteState(STATE_STORE_NAME, "order_1", storedEtag, null).block(); } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 mvn spring-boot:run ``` {{% /codetab %}} {{% codetab %}} ```python #dependencies from dapr.clients.grpc._request import TransactionalStateOperation, TransactionOperationType #code logging.basicConfig(level = logging.INFO) DAPR_STORE_NAME = "statestore" #Using Dapr SDK to delete the state with DaprClient() as client: client.delete_state(store_name=DAPR_STORE_NAME, key="order_1") ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 -- python3 OrderProcessingService.py ``` {{% /codetab %}} {{% codetab %}} ```go //dependencies import ( "context" dapr "github.com/dapr/go-sdk/client" ) //code func main() { STATE_STORE_NAME := "statestore" //Using Dapr SDK to delete the state client, err := dapr.NewClient() if err != nil { panic(err) } defer client.Close() ctx := context.Background() if err := client.DeleteState(ctx, STATE_STORE_NAME, "order_1"); err != nil { panic(err) } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 go run OrderProcessingService.go ``` {{% /codetab %}} {{% codetab %}} ```javascript //dependencies import { DaprClient, HttpMethod, CommunicationProtocolEnum } from '@dapr/dapr'; //code const daprHost = "127.0.0.1"; var main = function() { const STATE_STORE_NAME = "statestore"; //Using Dapr SDK to save and get state const client = new DaprClient({ daprHost, daprPort: process.env.DAPR_HTTP_PORT, communicationProtocol: CommunicationProtocolEnum.HTTP, }); await client.state.delete(STATE_STORE_NAME, "order_1"); } main(); ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 npm start ``` {{% /codetab %}} {{% codetab %}} With the same Dapr instance running from above, run: ```bash curl -X DELETE 'http://localhost:3601/v1.0/state/statestore/order_1' ``` Try getting state again. Note that no value is returned. {{% /codetab %}} {{% codetab %}} With the same Dapr instance running from above, run: ```powershell Invoke-RestMethod -Method Delete -Uri 'http://localhost:3601/v1.0/state/statestore/order_1' ``` Try getting state again. Note that no value is returned. {{% /codetab %}} {{< /tabs >}} ## Save and retrieve multiple states Below are code examples that leverage Dapr SDKs for saving and retrieving multiple states. {{< tabs ".NET" Java Python Go JavaScript "HTTP API (Bash)" "HTTP API (PowerShell)">}} {{% codetab %}} ```csharp //dependencies using Dapr.Client; //code namespace EventService { class Program { static async Task Main(string[] args) { string DAPR_STORE_NAME = "statestore"; //Using Dapr SDK to retrieve multiple states using var client = new DaprClientBuilder().Build(); IReadOnlyList mulitpleStateResult = await client.GetBulkStateAsync(DAPR_STORE_NAME, new List { "order_1", "order_2" }, parallelism: 1); } } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 dotnet run ``` The above example returns a `BulkStateItem` with the serialized format of the value you saved to state. If you prefer that the value be deserialized by the SDK across each of your bulk response items, you can instead use the following: ```csharp //dependencies using Dapr.Client; //code namespace EventService { class Program { static async Task Main(string[] args) { string DAPR_STORE_NAME = "statestore"; //Using Dapr SDK to retrieve multiple states using var client = new DaprClientBuilder().Build(); IReadOnlyList> mulitpleStateResult = await client.GetBulkStateAsync(DAPR_STORE_NAME, new List { "widget_1", "widget_2" }, parallelism: 1); } } class Widget { string Size { get; set; } string Color { get; set; } } } ``` {{% /codetab %}} {{% codetab %}} ```java //dependencies import io.dapr.client.DaprClient; import io.dapr.client.DaprClientBuilder; import io.dapr.client.domain.State; import java.util.Arrays; //code @SpringBootApplication public class OrderProcessingServiceApplication { private static final Logger log = LoggerFactory.getLogger(OrderProcessingServiceApplication.class); public static void main(String[] args) throws InterruptedException{ String STATE_STORE_NAME = "statestore"; //Using Dapr SDK to retrieve multiple states DaprClient client = new DaprClientBuilder().build(); Mono>> resultBulk = client.getBulkState(STATE_STORE_NAME, Arrays.asList("order_1", "order_2"), String.class); } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 mvn spring-boot:run ``` {{% /codetab %}} {{% codetab %}} ```python #dependencies from dapr.clients import DaprClient from dapr.clients.grpc._state import StateItem #code logging.basicConfig(level = logging.INFO) DAPR_STORE_NAME = "statestore" orderId = 100 #Using Dapr SDK to save and retrieve multiple states with DaprClient() as client: client.save_bulk_state(store_name=DAPR_STORE_NAME, states=[StateItem(key="order_2", value=str(orderId))]) result = client.get_bulk_state(store_name=DAPR_STORE_NAME, keys=["order_1", "order_2"], states_metadata={"metakey": "metavalue"}).items logging.info('Result after get bulk: ' + str(result)) ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 -- python3 OrderProcessingService.py ``` {{% /codetab %}} {{% codetab %}} ```go // dependencies import ( "context" "log" "math/rand" "strconv" "time" dapr "github.com/dapr/go-sdk/client" ) // code func main() { const STATE_STORE_NAME = "statestore" rand.Seed(time.Now().UnixMicro()) for i := 0; i < 10; i++ { orderId := rand.Intn(1000-1) + 1 client, err := dapr.NewClient() if err != nil { panic(err) } defer client.Close() ctx := context.Background() err = client.SaveState(ctx, STATE_STORE_NAME, "order_1", []byte(strconv.Itoa(orderId)), nil) if err != nil { panic(err) } keys := []string{"key1", "key2", "key3"} items, err := client.GetBulkState(ctx, STATE_STORE_NAME, keys, nil, 100) if err != nil { panic(err) } for _, item := range items { log.Println("Item from GetBulkState:", string(item.Value)) } } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 go run OrderProcessingService.go ``` {{% /codetab %}} {{% codetab %}} ```javascript //dependencies import { DaprClient, HttpMethod, CommunicationProtocolEnum } from '@dapr/dapr'; //code const daprHost = "127.0.0.1"; var main = function() { const STATE_STORE_NAME = "statestore"; var orderId = 100; //Using Dapr SDK to save and retrieve multiple states const client = new DaprClient({ daprHost, daprPort: process.env.DAPR_HTTP_PORT, communicationProtocol: CommunicationProtocolEnum.HTTP, }); await client.state.save(STATE_STORE_NAME, [ { key: "order_1", value: orderId.toString() }, { key: "order_2", value: orderId.toString() } ]); result = await client.state.getBulk(STATE_STORE_NAME, ["order_1", "order_2"]); } main(); ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 npm start ``` {{% /codetab %}} {{% codetab %}} With the same Dapr instance running from above, save two key/value pairs into your statestore: ```bash curl -X POST -H "Content-Type: application/json" -d '[{ "key": "order_1", "value": "250"}, { "key": "order_2", "value": "550"}]' http://localhost:3601/v1.0/state/statestore ``` Now get the states you just saved: ```bash curl -X POST -H "Content-Type: application/json" -d '{"keys":["order_1", "order_2"]}' http://localhost:3601/v1.0/state/statestore/bulk ``` {{% /codetab %}} {{% codetab %}} With the same Dapr instance running from above, save two key/value pairs into your statestore: ```powershell Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '[{ "key": "order_1", "value": "250"}, { "key": "order_2", "value": "550"}]' -Uri 'http://localhost:3601/v1.0/state/statestore' ``` Now get the states you just saved: ```powershell Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '{"keys":["order_1", "order_2"]}' -Uri 'http://localhost:3601/v1.0/state/statestore/bulk' ``` {{% /codetab %}} {{< /tabs >}} ## Perform state transactions {{% alert title="Note" color="primary" %}} State transactions require a state store that supports multi-item transactions. See the [supported state stores page]({{< ref supported-state-stores >}}) for a full list. {{% /alert %}} Below are code examples that leverage Dapr SDKs for performing state transactions. {{< tabs ".NET" Java Python Go JavaScript "HTTP API (Bash)" "HTTP API (PowerShell)">}} {{% codetab %}} ```csharp //dependencies using System; using System.Collections.Generic; using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; using Dapr.Client; using Microsoft.AspNetCore.Mvc; using System.Threading; using System.Text.Json; //code namespace EventService { class Program { static async Task Main(string[] args) { string DAPR_STORE_NAME = "statestore"; while(true) { System.Threading.Thread.Sleep(5000); Random random = new Random(); int orderId = random.Next(1,1000); using var client = new DaprClientBuilder().Build(); var requests = new List() { new StateTransactionRequest("order_3", JsonSerializer.SerializeToUtf8Bytes(orderId.ToString()), StateOperationType.Upsert), new StateTransactionRequest("order_2", null, StateOperationType.Delete) }; CancellationTokenSource source = new CancellationTokenSource(); CancellationToken cancellationToken = source.Token; //Using Dapr SDK to perform the state transactions await client.ExecuteStateTransactionAsync(DAPR_STORE_NAME, requests, cancellationToken: cancellationToken); Console.WriteLine("Order requested: " + orderId); Console.WriteLine("Result: " + result); } } } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 dotnet run ``` {{% /codetab %}} {{% codetab %}} ```java //dependencies import io.dapr.client.DaprClient; import io.dapr.client.DaprClientBuilder; import io.dapr.client.domain.State; import io.dapr.client.domain.TransactionalStateOperation; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import reactor.core.publisher.Mono; import java.util.ArrayList; import java.util.List; import java.util.Random; import java.util.concurrent.TimeUnit; //code @SpringBootApplication public class OrderProcessingServiceApplication { private static final Logger log = LoggerFactory.getLogger(OrderProcessingServiceApplication.class); private static final String STATE_STORE_NAME = "statestore"; public static void main(String[] args) throws InterruptedException{ while(true) { TimeUnit.MILLISECONDS.sleep(5000); Random random = new Random(); int orderId = random.nextInt(1000-1) + 1; DaprClient client = new DaprClientBuilder().build(); List> operationList = new ArrayList<>(); operationList.add(new TransactionalStateOperation<>(TransactionalStateOperation.OperationType.UPSERT, new State<>("order_3", Integer.toString(orderId), ""))); operationList.add(new TransactionalStateOperation<>(TransactionalStateOperation.OperationType.DELETE, new State<>("order_2"))); //Using Dapr SDK to perform the state transactions client.executeStateTransaction(STATE_STORE_NAME, operationList).block(); log.info("Order requested: " + orderId); } } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 mvn spring-boot:run ``` {{% /codetab %}} {{% codetab %}} ```python #dependencies import random from time import sleep import requests import logging from dapr.clients import DaprClient from dapr.clients.grpc._state import StateItem from dapr.clients.grpc._request import TransactionalStateOperation, TransactionOperationType #code logging.basicConfig(level = logging.INFO) DAPR_STORE_NAME = "statestore" while True: sleep(random.randrange(50, 5000) / 1000) orderId = random.randint(1, 1000) with DaprClient() as client: #Using Dapr SDK to perform the state transactions client.execute_state_transaction(store_name=DAPR_STORE_NAME, operations=[ TransactionalStateOperation( operation_type=TransactionOperationType.upsert, key="order_3", data=str(orderId)), TransactionalStateOperation(key="order_3", data=str(orderId)), TransactionalStateOperation( operation_type=TransactionOperationType.delete, key="order_2", data=str(orderId)), TransactionalStateOperation(key="order_2", data=str(orderId)) ]) client.delete_state(store_name=DAPR_STORE_NAME, key="order_1") logging.basicConfig(level = logging.INFO) logging.info('Order requested: ' + str(orderId)) logging.info('Result: ' + str(result)) ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 -- python3 OrderProcessingService.py ``` {{% /codetab %}} {{% codetab %}} ```go // dependencies package main import ( "context" "log" "math/rand" "strconv" "time" dapr "github.com/dapr/go-sdk/client" ) // code func main() { const STATE_STORE_NAME = "statestore" rand.Seed(time.Now().UnixMicro()) for i := 0; i < 10; i++ { orderId := rand.Intn(1000-1) + 1 client, err := dapr.NewClient() if err != nil { panic(err) } defer client.Close() ctx := context.Background() err = client.SaveState(ctx, STATE_STORE_NAME, "order_1", []byte(strconv.Itoa(orderId)), nil) if err != nil { panic(err) } result, err := client.GetState(ctx, STATE_STORE_NAME, "order_1", nil) if err != nil { panic(err) } ops := make([]*dapr.StateOperation, 0) data1 := "data1" data2 := "data2" op1 := &dapr.StateOperation{ Type: dapr.StateOperationTypeUpsert, Item: &dapr.SetStateItem{ Key: "key1", Value: []byte(data1), }, } op2 := &dapr.StateOperation{ Type: dapr.StateOperationTypeDelete, Item: &dapr.SetStateItem{ Key: "key2", Value: []byte(data2), }, } ops = append(ops, op1, op2) meta := map[string]string{} err = client.ExecuteStateTransaction(ctx, STATE_STORE_NAME, meta, ops) log.Println("Result after get:", string(result.Value)) time.Sleep(2 * time.Second) } } ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 go run OrderProcessingService.go ``` {{% /codetab %}} {{% codetab %}} ```javascript //dependencies import { DaprClient, HttpMethod, CommunicationProtocolEnum } from '@dapr/dapr'; //code const daprHost = "127.0.0.1"; var main = function() { for(var i=0;i<10;i++) { sleep(5000); var orderId = Math.floor(Math.random() * (1000 - 1) + 1); start(orderId).catch((e) => { console.error(e); process.exit(1); }); } } async function start(orderId) { const client = new DaprClient({ daprHost, daprPort: process.env.DAPR_HTTP_PORT, communicationProtocol: CommunicationProtocolEnum.HTTP, }); const STATE_STORE_NAME = "statestore"; //Using Dapr SDK to save and retrieve multiple states await client.state.transaction(STATE_STORE_NAME, [ { operation: "upsert", request: { key: "order_3", value: orderId.toString() } }, { operation: "delete", request: { key: "order_2" } } ]); } function sleep(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } main(); ``` To launch a Dapr sidecar for the above example application, run a command similar to the following: ```bash dapr run --app-id orderprocessing --app-port 6001 --dapr-http-port 3601 --dapr-grpc-port 60001 npm start ``` {{% /codetab %}} {{% codetab %}} With the same Dapr instance running from above, perform two state transactions: ```bash curl -X POST -H "Content-Type: application/json" -d '{"operations": [{"operation":"upsert", "request": {"key": "order_1", "value": "250"}}, {"operation":"delete", "request": {"key": "order_2"}}]}' http://localhost:3601/v1.0/state/statestore/transaction ``` Now see the results of your state transactions: ```bash curl -X POST -H "Content-Type: application/json" -d '{"keys":["order_1", "order_2"]}' http://localhost:3601/v1.0/state/statestore/bulk ``` {{% /codetab %}} {{% codetab %}} With the same Dapr instance running from above, save two key/value pairs into your statestore: ```powershell Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '{"operations": [{"operation":"upsert", "request": {"key": "order_1", "value": "250"}}, {"operation":"delete", "request": {"key": "order_2"}}]}' -Uri 'http://localhost:3601/v1.0/state/statestore/transaction' ``` Now see the results of your state transactions: ```powershell Invoke-RestMethod -Method Post -ContentType 'application/json' -Body '{"keys":["order_1", "order_2"]}' -Uri 'http://localhost:3601/v1.0/state/statestore/bulk' ``` {{% /codetab %}} {{< /tabs >}} ## Next steps - Read the full [State API reference]({{< ref state_api.md >}}) - Try one of the [Dapr SDKs]({{< ref sdks >}}) - Build a [stateful service]({{< ref howto-stateful-service.md >}})