Akka.Persistence.Azure 1.5.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Akka.Persistence.Azure --version 1.5.1
NuGet\Install-Package Akka.Persistence.Azure -Version 1.5.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Akka.Persistence.Azure" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Akka.Persistence.Azure --version 1.5.1
#r "nuget: Akka.Persistence.Azure, 1.5.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Akka.Persistence.Azure as a Cake Addin
#addin nuget:?package=Akka.Persistence.Azure&version=1.5.1

// Install Akka.Persistence.Azure as a Cake Tool
#tool nuget:?package=Akka.Persistence.Azure&version=1.5.1

Akka.Persistence support for Windows Azure Table storage and Azure blob storage.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Akka.Persistence.Azure:

Package Downloads
Akka.Persistence.Azure.Hosting The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Akka.Hosting support for Akka.Persistence.Azure.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.19 208 4/24/2024
1.5.17.1 2,667 3/4/2024
1.5.13 9,896 10/6/2023
1.5.1 16,970 3/16/2023
1.5.0 1,399 3/3/2023
0.9.2 5,032 9/27/2022
0.9.1 3,598 8/29/2022
0.9.0 1,922 7/21/2022
0.8.4 2,050 6/3/2022
0.8.3 4,088 9/9/2021
0.8.2 1,963 4/28/2021
0.8.1 2,136 4/21/2021
0.8.0 1,289 4/16/2021
0.7.2 3,294 1/8/2021
0.7.1 1,214 12/15/2020
0.7.0 4,932 7/17/2020
0.6.1 1,219 7/10/2020
0.6.0 4,059 3/11/2020
0.6.0-rc2 990 3/10/2020
0.6.0-rc1 973 3/3/2020
0.5.0 2,799 10/9/2019
0.1.0 1,165 7/12/2019

[Update Akka.NET v1.5.1](https://github.com/akkadotnet/akka.net/releases/tag/1.5.1)
[Bump Azure.Storage.Blobs to 12.15.0](https://github.com/petabridge/Akka.Persistence.Azure/pull/287)
[Add multi journal support](https://github.com/petabridge/Akka.Persistence.Azure/pull/272)
Multi Journal Support**
You can now add more than one Akka.Persistence.Azure settings and use them singularly for different Akka plugins.
In the example below, we set up two separate journal options with two distinct identifier, one is being used as default persistence plugin, and the other are being used as the journal for cluster sharding.
```csharp
var persistenceJournal = new AzureTableStorageJournalOptions(true)
{
Identifier = "azure-journal",
ConnectionString = connectionString
};
var shardJournal = new AzureTableStorageJournalOptions(false)
{
Identifier = "azure-shard-journal",
ConnectionString = shardConnectionString
};
builder
.WithClustering()
.WithAzureTableJournal(persistenceJournal)
.WithAzureTableJournal(shardJournal)
.WithAzureBlobsSnapshotStore(new AzureBlobSnapshotOptions
{
ConnectionString = connectionString
})
.WithShardRegion<ShardRegionKey>(
"region-1",
Customer.Props,
new MessageExtractor(10),
new ShardOptions
{
JournalOptions = shardJournal,
StateStoreMode = StateStoreMode.Persistence
});
```