-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathEasyCachingConstValue.cs
More file actions
142 lines (115 loc) · 4.24 KB
/
EasyCachingConstValue.cs
File metadata and controls
142 lines (115 loc) · 4.24 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
namespace EasyCaching.Core
{
/// <summary>
/// EasyCaching const value.
/// </summary>
public class EasyCachingConstValue
{
/// <summary>
/// The config section.
/// </summary>
public const string ConfigSection = "easycaching";
/// <summary>
/// The redis section.
/// </summary>
public const string RedisSection = "easycaching:redis";
/// <summary>
/// The CSRedis section.
/// </summary>
public const string CSRedisSection = "easycaching:csredis";
/// <summary>
/// The memcached section.
/// </summary>
public const string MemcachedSection = "easycaching:memcached";
/// <summary>
/// The SQLite section.
/// </summary>
public const string SQLiteSection = "easycaching:sqlite";
/// <summary>
/// The in-memory section.
/// </summary>
public const string InMemorySection = "easycaching:inmemory";
/// <summary>
/// The disk section.
/// </summary>
public const string DiskSection = "easycaching:disk";
/// <summary>
/// The hybrid section.
/// </summary>
public const string HybridSection = "easycaching:hybrid";
/// <summary>
/// The redis bus section.
/// </summary>
public const string RedisBusSection = "easycaching:redisbus";
/// <summary>
/// The rabbitMQ Bus section.
/// </summary>
public const string RabbitMQBusSection = "easycaching:rabbitmqbus";
/// <summary>
/// The kafka bus section.
/// </summary>
public const string KafkaBusSection = "easycaching:kafkabus";
/// <summary>
/// The zookeeper bus section.
/// </summary>
public const string ZookeeperBusSection = "easycaching:zookeeperbus";
/// <summary>
/// The default name of the in-memory.
/// </summary>
public const string DefaultInMemoryName = "DefaultInMemory";
/// <summary>
/// The default name of the redis.
/// </summary>
public const string DefaultRedisName = "DefaultRedis";
/// <summary>
/// The default name of the CSRedis.
/// </summary>
public const string DefaultCSRedisName = "DefaultCSRedis";
/// <summary>
/// The default name of the memcached.
/// </summary>
public const string DefaultMemcachedName = "DefaultMemcached";
/// <summary>
/// The default name of the SQLite.
/// </summary>
public const string DefaultSQLiteName = "DefaultSQLite";
/// <summary>
/// The default name of the disk.
/// </summary>
public const string DefaultDiskName = "DefaultDisk";
/// <summary>
/// The default name of the hybrid.
/// </summary>
public const string DefaultHybridName = "DefaultHybrid";
/// <summary>
/// The default name of the serializer.
/// </summary>
public const string DefaultSerializerName = "binary";
/// <summary>
/// The default name of the LiteDB.
/// </summary>
public const string DefaultLiteDBName = "DefaultLiteDB";
/// <summary>
/// The LiteDB Bus section.
/// </summary>
public const string LiteDBSection= "easycaching:litedb";
/// <summary>
/// The default name of the FasterKv
/// </summary>
public const string DefaultFasterKvName = "DefaultFasterKvName";
/// <summary>
/// The default name of the etcd.
/// </summary>
public const string DefaultEtcdName = "DefaultEtcd";
/// <summary>
/// The etcd section.
/// </summary>
public const string EtcdSection = "easycaching:etcd";
/// <summary>
/// The FasterKv section.
/// </summary>
public const string FasterKvSection= "easycaching:fasterKv";
public const string NotFoundCliExceptionMessage = "Can not find the matched client instance, client name is {0}";
public const string NotFoundSerExceptionMessage = "Can not find the matched serializer instance, serializer name is {0}";
}
}