From 6be91becb67fdd5258511e88978e3cb3ed1f0a80 Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Sat, 21 Sep 2024 11:17:00 +0900 Subject: [PATCH] Update docs --- documentation/docs/state-management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/state-management.md b/documentation/docs/state-management.md index ce78beab..1c336a4b 100644 --- a/documentation/docs/state-management.md +++ b/documentation/docs/state-management.md @@ -6,7 +6,7 @@ Rinf performs best when the application logic is written entirely in Rust, with ## 💥 Actor Model -The actor model is highly recommended for managing asynchronous state in Rust. By encapsulating state and behavior within actor structs, which maintain ownership and handle their own async tasks, the actor model provides a scalable and reliable way to manage complex state interactions. +The actor model is highly recommended for managing asynchronous state in Rust. By encapsulating state and behavior within actor structs, which maintain ownership and handle their own async tasks, the actor model provides a scalable and modular way to manage complex state interactions. 1. **Encapsulation**: Actors encapsulate state and behavior, allowing for modular and maintainable code. 2. **Concurrency**: Each actor operates independently, making it easier to handle concurrent tasks without manual synchronization.