diff --git a/concepts/state-management/state-management.md b/concepts/state-management/state-management.md index b779d32fe..0238b5a3f 100644 --- a/concepts/state-management/state-management.md +++ b/concepts/state-management/state-management.md @@ -74,13 +74,13 @@ KEYS "myApp*" If the data store supports SQL queries, you can query an actor's state using SQL queries. For example use: ```sql -SELECT * FROM StateTable WHERE Id='||||||' +SELECT * FROM StateTable WHERE Id='||||||' ``` You can also perform aggregate queries across actor instances, avoiding the common turn-based concurrency limitations of actor frameworks. For example, to calculate the average temperature of all thermometer actors, use: ```sql -SELECT AVG(value) FROM StateTable WHERE Id LIKE '||||*||temperature' +SELECT AVG(value) FROM StateTable WHERE Id LIKE '||||*||temperature' ``` > **NOTE:** Direct queries of the state store are not governed by Dapr concurrency control, since you are not calling through the Dapr runtime. What you see are snapshots of committed data which are acceptable for read-only queries across multiple actors, however writes should be done via the actor instances. diff --git a/howto/intellij-debugging-daprd/README.md b/howto/intellij-debugging-daprd/README.md index 61e831093..2d72c0f93 100644 --- a/howto/intellij-debugging-daprd/README.md +++ b/howto/intellij-debugging-daprd/README.md @@ -31,7 +31,7 @@ Create or edit the file in `$HOME/.IdeaIC2019.3/config/tools/External\ Tools.xml