Skip to content

Instantly share code, notes, and snippets.

@devdays
Created February 5, 2015 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/05947537d5085c7e1cad to your computer and use it in GitHub Desktop.
Save devdays/05947537d5085c7e1cad to your computer and use it in GitHub Desktop.
Redis Output cache pseudo code
<caching>
<outputCache defaultProvider="MyRedisOutputCache">
<providers>
<add name="MyRedisOutputCache"
host = "127.0.0.1" [String]
port = "" [number]
accessKey = "" [String]
ssl = "false" [true|false]
databaseId = "0" [number]
applicationName = "" [String]
connectionTimeoutInMilliseconds = "5000" [number]
operationTimeoutInMilliseconds = "5000" [number]
/>
<add name="MyRedisOutputCache" type="Microsoft.Web.Redis.RedisOutputCacheProvider" host="127.0.0.1" accessKey="" ssl="false" />
</providers>
</outputCache>
</caching>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment