forked from postsharp/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
67 lines (58 loc) · 2.83 KB
/
Copy pathProgram.cs
File metadata and controls
67 lines (58 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using PostSharp.Patterns.Caching;
using PostSharp.Patterns.Caching.Backends.Redis;
using StackExchange.Redis;
using System;
using System.Linq;
namespace PostSharp.Samples.Caching
{
[CacheConfiguration(AbsoluteExpiration = 5)]
internal class Program
{
private static void Main(string[] args)
{
using (RedisServer.Start())
{
using (var connection = ConnectionMultiplexer.Connect("localhost:6380,abortConnect = False"))
{
connection.ErrorMessage += (sender, eventArgs) => Console.Error.WriteLine(eventArgs.Message);
connection.ConnectionFailed += (sender, eventArgs) => Console.Error.WriteLine(eventArgs.Exception);
var configuration = new RedisCachingBackendConfiguration
{
IsLocallyCached = true,
SupportsDependencies = true
};
using (var backend = RedisCachingBackend.Create(connection, configuration))
{
// With Redis, we need at least one instance of the collection engine.
using (RedisCacheDependencyGarbageCollector.Create(connection, configuration))
{
CachingServices.DefaultBackend = backend;
// Configure the Account caching profile used in the AccountServices class.
CachingServices.Profiles["Account"].AbsoluteExpiration = TimeSpan.FromSeconds(10);
// Testing direct invalidation.
Console.WriteLine("Retrieving the customer for the 1st time should hit the database.");
CustomerServices.GetCustomer(1);
Console.WriteLine("Retrieving the customer for the 2nd time should NOT hit the database.");
CustomerServices.GetCustomer(1);
Console.WriteLine("This should invalidate the GetCustomer method.");
CustomerServices.UpdateCustomer(1, "New name");
Console.WriteLine("This should hit the database again because GetCustomer has been invalidated.");
CustomerServices.GetCustomer(1);
// Testing indirect invalidation (dependencies).
Console.WriteLine("Retrieving the account list for the 1st time should hit the database.");
AccountServices.GetAccountsOfCustomer(1);
Console.WriteLine("Retrieving the account list for the 2nt time should NOT hit the database.");
var accounts = AccountServices.GetAccountsOfCustomer(1);
Console.WriteLine("This should invalidate the accounts");
AccountServices.UpdateAccount(accounts.First());
Console.WriteLine(
"This should hit the database again because GetAccountsOfCustomer has been invalidated.");
AccountServices.GetAccountsOfCustomer(1);
Console.WriteLine("Done!");
}
}
}
}
}
}
}