Clarify state stores for actors, add list of supported ones (#256)

This commit is contained in:
Leon Mai 2019-11-20 13:59:14 -08:00 committed by Aman Bhardwaj
parent c3f00845ca
commit e0a100b6c1
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,10 @@ Dapr Actors runtime provides following capabilities:
You can interact with Dapr through Http/gRPC endpoints for state management.
To use actors, your state store must support multi-item transactions. This means your state store [component](https://github.com/dapr/components-contrib/tree/master/state) must implement the [TransactionalStore](https://github.com/dapr/components-contrib/blob/master/state/transactional_store.go) interface. The following state stores implement this interface:
- Redis
- MongoDB
### Save the Actor State
You can save the Actor state of a given key of actorId of type actorType by calling