Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
temeddix committed Sep 21, 2024
1 parent 52a6fd5 commit 6be91be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/docs/state-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6be91be

Please sign in to comment.