Ractor 0.2.0
See the version list below for details.
dotnet add package Ractor --version 0.2.0
NuGet\Install-Package Ractor -Version 0.2.0
<PackageReference Include="Ractor" Version="0.2.0" />
paket add Ractor --version 0.2.0
#r "nuget: Ractor, 0.2.0"
// Install Ractor as a Cake Addin #addin nuget:?package=Ractor&version=0.2.0 // Install Ractor as a Cake Tool #tool nuget:?package=Ractor&version=0.2.0
Ractor (Redis Actor) is a distributed actor system
with CLR/JVM interop (WIP) and dead simple API for POCOs cache/persistence.
Its API is inspired by F#'s MailboxProcessor, Fsharp.Actor and 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 | 854 | 2/8/2017 |
0.5.5 | 1,204 | 12/25/2016 |
0.5.4 | 1,017 | 12/25/2016 |
0.5.3 | 1,006 | 12/25/2016 |
0.5.2 | 963 | 12/23/2016 |
0.5.1 | 968 | 12/21/2016 |
0.5.0 | 957 | 12/21/2016 |
0.4.5 | 1,119 | 2/25/2016 |
0.4.4 | 1,173 | 9/25/2015 |
0.4.3 | 1,120 | 9/23/2015 |
0.4.2 | 1,079 | 8/18/2015 |
0.4.1 | 1,089 | 7/16/2015 |
0.4.0 | 1,023 | 7/14/2015 |
0.3.9 | 1,160 | 7/14/2015 |
0.3.8 | 1,138 | 7/13/2015 |
0.3.7 | 1,102 | 7/6/2015 |
0.3.6 | 1,051 | 7/6/2015 |
0.3.5 | 1,092 | 4/1/2015 |
0.3.4 | 1,079 | 3/27/2015 |
0.3.3 | 1,071 | 3/25/2015 |
0.3.2 | 1,083 | 3/25/2015 |
0.2.0 | 1,163 | 7/30/2014 |
0.1.1 | 1,124 | 7/11/2014 |
Concrete shards instead of virtual shards.
Sequential GUID generator with timestamp.
Use sequential GUIDs for primary everywhere. With timestamp stored inside GUID
there is effectively zero overhead. We always need 8 bytes timestamp and an incrementing ID
for clustered index, with sequential GUIDs we get both + distributed generation. (use NTP
to sync time on machines)
ServiceStack.ORMLite.MySQL version with GUID stored as binary(16)
(/lib with 4.0.23 version and [source here](https://github.com/buybackoff/ServiceStack.OrmLite)).