Orleans (software framework)
Orleans is a cross-platform software framework for building scalable and robust distributed interactive applications based on the .NET Framework or on the more recent .NET.
Overview
Orleans was originally created by the eXtreme Computing Group at Microsoft Research and introduced the virtual actor model as a new approach to building distributed systems for the cloud. Orleans scales from a single on-premises server to highly-available and globally distributed applications in the cloud.The virtual actor model is based on the actor model but has several differences:
- A virtual actor always exists, it cannot be explicitly created or destroyed.
- Virtual actors are automatically instantiated. If a server hosting an actor crashes, the next message sent to the actor causes it to be reinstantiated automatically.
- The server that an actor is on is transparent to the application code.
- Orleans can automatically create multiple instances of the same stateless actor.
Orleans runs on Microsoft Windows, Linux, and macOS and is compatible with.NET Standard 2.0 and above.
Features
Some Orleans features include:- Persistence
- Distributed ACID transactions
- Streams
- Timers & Reminders
- Fault tolerance