Ractor 0.1.1
See the version list below for details.
dotnet add package Ractor --version 0.1.1
NuGet\Install-Package Ractor -Version 0.1.1
<PackageReference Include="Ractor" Version="0.1.1" />
paket add Ractor --version 0.1.1
#r "nuget: Ractor, 0.1.1"
// Install Ractor as a Cake Addin #addin nuget:?package=Ractor&version=0.1.1 // Install Ractor as a Cake Tool #tool nuget:?package=Ractor&version=0.1.1
Ractor is a light distributed actors framework built on top of Redis. Its API is similar to
F#'s MailboxProcessor, Fsharp.Actor or Akka(.NET) libraries. The main difference is that in Ractor actors exist
is Redis per se as lists of messages, while a number of ephemeral workers (actors' "incarnations") take messages
from Redis, process them and post results back.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.7.0-build1702080717 | 867 | 2/8/2017 |
0.5.5 | 1,221 | 12/25/2016 |
0.5.4 | 1,031 | 12/25/2016 |
0.5.3 | 1,020 | 12/25/2016 |
0.5.2 | 977 | 12/23/2016 |
0.5.1 | 982 | 12/21/2016 |
0.5.0 | 973 | 12/21/2016 |
0.4.5 | 1,133 | 2/25/2016 |
0.4.4 | 1,187 | 9/25/2015 |
0.4.3 | 1,134 | 9/23/2015 |
0.4.2 | 1,093 | 8/18/2015 |
0.4.1 | 1,105 | 7/16/2015 |
0.4.0 | 1,039 | 7/14/2015 |
0.3.9 | 1,174 | 7/14/2015 |
0.3.8 | 1,154 | 7/13/2015 |
0.3.7 | 1,118 | 7/6/2015 |
0.3.6 | 1,065 | 7/6/2015 |
0.3.5 | 1,107 | 4/1/2015 |
0.3.4 | 1,096 | 3/27/2015 |
0.3.3 | 1,088 | 3/25/2015 |
0.3.2 | 1,098 | 3/25/2015 |
0.2.0 | 1,177 | 7/30/2014 |
0.1.1 | 1,138 | 7/11/2014 |
Rename to Ractor and change direction: the goal is to make CLR/JVM interoperable actors. An
actor could be defined in any language on any platform and called from another platform. The only
requirement is that message types are defined on both platforms and are serializable to the same
Json representation.