Skip to content

A Redis implementation of the Orleans Storage Provider model. Uses the Azure Redis Cache to persist grain states.

Notifications You must be signed in to change notification settings

yonglehou/Orleans.StorageProvider.Redis

 
 

Repository files navigation

Orleans.StorageProvider.Redis

Build status dev branch Build status

A Redis implementation of the Orleans Storage Provider model. Uses the Azure Redis Cache to persist grain states.

Usage

Install-Package RedisStorage

Decorate your grain with the StorageProvider attribute matching the name you added from config e.g.

[StorageProvider(ProviderName = "RedisStore")]

and in your OrleansConfiguration.xml configure the RedisStorage provider like this:

<Provider Type="Orleans.StorageProviders.RedisStorage" Name="RedisStore"
    RedisConnectionString="<youraccount>.redis.cache.windows.net,abortConnect=false,ssl=true,password=<yourkey>"/>

These settings will enable the redis cache to act as the store for grains that have

  • State
  • Need to persist their state

Configuration

The following attributes can be used on the <Provider/> tag to configure the provider:

  • UseJsonFormat="true/false" (optional) Defaults to true, if set to false the Orleans binary serializer is used (this is recommended, as the JSON serializer is unable to serialize certain types).
  • RedisConnectionString="..." (required) the connection string to your redis database (i.e. <youraccount>.redis.cache.windows.net,abortConnect=false,ssl=true,password=<yourkey>)
  • DatabaseNumber="1" (optional) the number of the redis database to connect to

License

MIT

About

A Redis implementation of the Orleans Storage Provider model. Uses the Azure Redis Cache to persist grain states.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%