update links

Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
This commit is contained in:
Hannah Hunter 2023-03-23 11:23:01 -04:00
parent 8b3fc3f8f6
commit b81160a08e
2 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ Since Dapr actors are virtual, they do not need to be explicitly created or dest
An actor's state outlives the object's lifetime, as state is stored in the configured state provider for Dapr runtime.
[Learn more about actor lifetimes.]({{< "actor-features-concepts.md#actor-lifetime" >}})
[Learn more about actor lifetimes.]({{< ref "actors-features-concepts.md#actor-lifetime" >}})
### Distribution and failover
@ -80,8 +80,8 @@ The functionality of timers and reminders is very similar. The main difference i
This distinction allows users to trade off between light-weight but stateless timers vs. more resource-demanding but stateful reminders.
- [Learn more about actor timers.]({{< ref "actors-features-concepts.md#timers >}})
- [Learn more about actor timers.]({{< ref "actors-features-concepts.md#reminders >}})
- [Learn more about actor timers.]({{< ref "actors-features-concepts.md#timers" >}})
- [Learn more about actor timers.]({{< ref "actors-features-concepts.md#reminders" >}})
- [Learn more about timer and reminder error handling and failover.]({{< ref "actors-features-concepts.md#timers-and-reminders-error-handling" >}})
## When to use actors

View File

@ -31,7 +31,7 @@ To use actors, your state store must support multi-item transactions. This mean
## Actor timers and reminders
Actors can schedule periodic work on themselves by registering either timers or reminders. Set timers or reminders for your actors using the [Actors Timers and Reminders]({{< actors-timers-reminders.md >}}) guide.
Actors can schedule periodic work on themselves by registering either timers or reminders. Set timers or reminders for your actors using the [Actors Timers and Reminders]({{< ref actors-timers-reminders.md >}}) guide.
## Actor runtime configuration