Article · Wikipedia archive · Last revised Jun 2, 2026

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.

Last revised
Jun 2, 2026
Read time
≈ 2 min
Length
527 w
Citations
16
Source
Orleans
Original authorMicrosoft Research
DevelopersMicrosoft, 343 Industries
Initial releaseJanuary 2015 (2015-01)
Stable release
9.1.2 / February 13, 2025 (2025-02-13)1
Written inC#
Operating systemWindows, Linux, macOS
Platform.NET Framework,
.NET
TypeSoftware framework
LicenseMIT License
Websitedotnet.github.io/orleans/
Repositorygithub.com/dotnet/orleans

Orleans is a cross-platform software framework for building scalable and robust distributed interactive applications based on the .NET Framework23 or on the more recent .NET.

Overview

Orleans was originally created by the eXtreme Computing Group at Microsoft Research2 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.4

The virtual actor model is based on the actor model but has several differences:5

  1. A virtual actor always exists, it cannot be explicitly created or destroyed.
  2. 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.
  3. The server that an actor is on is transparent to the application code.
  4. Orleans can automatically create multiple instances of the same stateless actor.

Starting with cloud services for the Halo franchise, the framework has been used by a number of cloud services at Microsoft6 and other companies since 2011.7 The core Orleans technology was transferred to 343 Industries and is available as open source since January 2015.8 The source code is licensed under MIT License and hosted on GitHub.9

Orleans runs on Microsoft Windows, Linux, and macOS and is compatible with .NET Standard 2.0 and above.10

Features

Some Orleans features include:11

The Electronic Arts BioWare division created Project Orbit. It is a Java implementation of virtual actors that was heavily inspired by the Orleans project.1415

See also

See also

References

References

Further reading

Further reading

External links