[ProtoContract]publicclassPeople{[ProtoMember(1)]publicint ID {get;set;}[ProtoMember(2)]publicstring FirstName {get;set;}[ProtoMember(3)]publicstring LastName {get;set;}[ProtoMember(4)]publicDateTime BirthDate {get;set;}[ProtoMember(5)]publicbool Active {get;set;}[ProtoMember(6)]publicAddressModel Address {get;set;}}[ProtoContract]publicclassAddressModel{[ProtoMember(1)]publicint AptNumber {get;set;}[ProtoMember(2)]publicstring StreetAdress {get;set;}[ProtoMember(3)]publicstring ZipCode {get;set;}[ProtoMember(4)]publicstring City {get;set;}[ProtoMember(5)]publicstring State {get;set;}[ProtoMember(6)]publicstring Country {get;set;}}[ProtoContract]publicclassPeopleNoAttr{[ProtoMember(1)]publicint ID {get;set;}[ProtoMember(2)]publicstring FirstName {get;set;}[ProtoMember(3)]publicstring LastName {get;set;}[ProtoMember(4)]publicDateTime BirthDate {get;set;}[ProtoMember(5)]publicbool Active {get;set;}[ProtoMember(6)]publicAddressNoAttr Address {get;set;}}[ProtoContract]publicclassAddressNoAttr{[ProtoMember(1)]publicint AptNumber {get;set;}[ProtoMember(2)]publicstring StreetAdress {get;set;}[ProtoMember(3)]publicstring ZipCode {get;set;}[ProtoMember(4)]publicstring City {get;set;}[ProtoMember(5)]publicstring State {get;set;}[ProtoMember(6)]publicstring Country {get;set;}}
Program.cs主程序:
internalclassProgram{privatestaticIDatabase db = RedisConnection.Instance.GetDatabase();privatestaticvoidMain(string[] args){SetAndGet();TestInteger();TestDouble();TestBool();TestSerializedDate();TestProtobufNet();TestSerializedArray();TestProtobufAndRedis();TestProtobufAndRedis_List();TestProtobufAndRedis_IEnumerable();TestDeleteKey();TestSync();TestAsync();
Console.ReadKey();}publicstaticvoidSetAndGet(){conststringvalue="abcdefg";
db.StringSet("mykey",value);var val = db.StringGet("mykey");
Console.WriteLine(val);}publicstaticvoidTestInteger(){constint num =5;
db.StringSet("StackExchangeRedis_TestInteger", num);var val = db.StringGet("StackExchangeRedis_TestInteger");
Console.WriteLine(val);}publicstaticvoidTestDouble(){constdouble num =5.34567;
db.StringSet("StackExchangeRedis_TestDouble", num);var val = db.StringGet("StackExchangeRedis_TestDouble");
Console.WriteLine(val);}publicstaticvoidTestBool(){constbool b =true;
db.StringSet("StackExchangeRedis_TestBoolT", b);var val = db.StringGet("StackExchangeRedis_TestBoolT");
Console.WriteLine(val);}publicstaticvoidTestSerializedDate(){DateTime now = DateTime.Now;SetCache<DateTime>("StackExchangeRedis_TestSerializedDate", now);var val =GetCache<DateTime>("StackExchangeRedis_TestSerializedDate");
Console.WriteLine(now);
Console.WriteLine(val);}publicstaticvoidTestProtobufNet(){var ppl =newPeople(){
ID =1,
FirstName ="John",
LastName ="Doe",
Address =newAddressModel(){
AptNumber =56,
StreetAdress ="123 Main Street",
City ="Toronto",
State ="Ontario",
Country ="Canada"}};using(var file = File.Create("person.bin")){
Serializer.Serialize<People>(file, ppl);}People newPerson;using(var file = File.OpenRead("person.bin")){
newPerson = Serializer.Deserialize<People>(file);}
Console.WriteLine(newPerson.Address.StreetAdress);
Console.WriteLine(newPerson.Address.Country+"=="+ppl.Address.Country);}publicstaticvoidTestSerializedArray(){int[] arr =newint[4]{5,7,11,17};SetCache<int[]>("StackExchangeRedis_TestSerializedArray", arr);
Console.WriteLine("Array length = "+ arr.Length);
arr =GetCache<int[]>("StackExchangeRedis_TestSerializedArray");
Console.WriteLine("Deserialized array length = "+ arr.Length);
Console.WriteLine(arr[2]);}publicstaticvoidTestProtobufAndRedis(){var ppl =newPeopleNoAttr(){
ID =2,
FirstName ="Jane",
LastName ="Smith",
Address =newAddressNoAttr(){
AptNumber =56,
StreetAdress ="123 Main Street",
City ="Toronto",
State ="Ontario",
Country ="Canada"}};SetCacheNoAttr<PeopleNoAttr>("StackExchangeRedis_TestProtobufAndRedis_NoAttr", ppl);var val2 =GetCache<PeopleNoAttr>("StackExchangeRedis_TestProtobufAndRedis_NoAttr");
Console.WriteLine(val2.Address.AptNumber);}publicstaticvoidTestProtobufAndRedis_List(){var cachekey ="StackExchangeRedis_TestProtobufAndRedisList";
List<People> ppl =GenerateList();
SetCache<List<People>>(cachekey, ppl);var val2 = GetCache<List<People>>(cachekey);
Console.WriteLine(val2[1].Address.StreetAdress);}publicstaticvoidTestProtobufAndRedis_IEnumerable(){var cachekey ="StackExchangeRedis_TestProtobufAndRedisIEnumerable";
List<People> ppl =GenerateList();
IEnumerable<People> Ippl =(IEnumerable<People>) ppl;
SetCache<IEnumerable<People>>(cachekey, ppl);var val2 = GetCache<IEnumerable<People>>(cachekey);var el = val2.ElementAt(1);
Console.WriteLine(el.Address.StreetAdress);}publicstaticvoidTestDeleteKey(){DeleteFromCache("StackExchangeRedis_TestProtobufAndRedis");}// TO DO:// =====// no attributes// twemproxy// compare to old redis: C:\workspace\CareerCruising_Core\CC.Data_Tests\RemoteCacheProvider_Test.cs//******************************publicstaticvoidTestSync(){var aSync = db.StringGet("StackExchangeRedis_TestDouble");var bSync = db.StringGet("StackExchangeRedis_TestInteger");}publicstaticvoidTestAsync(){var aPending = db.StringGetAsync("StackExchangeRedis_TestDouble");var bPending = db.StringGetAsync("StackExchangeRedis_TestInteger");var a = db.Wait(aPending);var b = db.Wait(bPending);}//******************************/*publicstaticvoidTestExpirationDate(){var cachekey ="StackExchangeRedis_TestExpirationDate";
db.StringSet(cachekey,"testing expiration date");
db.KeyExpire(cachekey, TimeSpan.FromMinutes(30));var ttl = db.KeyTimeToLive(cachekey);
Console.Write(ttl);}publicstaticvoidTestDeleteKeysByPartOfName(){DeleteKeysByPartOfName("StackExchangeRedis_");}*//*
public static void TestDeleteAllKeys()
{
ClearCache();
}*/#region non-test methodsprivatestaticbyte[]DataToBytes<T>(T data){MemoryStream stream =newMemoryStream();//ProtoBuf序列化开始
Serializer.Serialize(stream, data);byte[] bytes = stream.ToArray();
stream.Close();return bytes;}privatestatic List<People>GenerateList(){
List<People> ppl =newList<People>();var person1 =newPeople(){
ID =1,
FirstName ="Jane",
LastName ="Smith",
Address =newAddressModel(){
AptNumber =51,
StreetAdress ="123 Main Street",
City ="Toronto",
State ="Ontario",
Country ="Canada"}};var person2 =newPeople(){
ID =2,
FirstName ="John",
LastName ="Doe",
Address =newAddressModel(){
AptNumber =52,
StreetAdress ="678 Main Street",
City ="Toronto1",
State ="Ontario1",
Country ="Canada1"}};
ppl.Add(person1);
ppl.Add(person2);return ppl;}// Serialization/deserialization and caching:publicstaticboolSetCache<T>(string key,Tvalue){if(!string.IsNullOrWhiteSpace(key)){return db.StringSet(key,DataToBytes<T>(value));}returnfalse;}publicstaticboolSetCacheNoAttr<T>(string key,Tvalue){if(!string.IsNullOrWhiteSpace(key)){
Console.WriteLine(DataToBytes<T>(value));return db.StringSet(key,DataToBytes<T>(value));}returnfalse;}publicstatic T GetCache<T>(string key){byte[] val = db.StringGet(key);MemoryStream stream =newMemoryStream(val,false);return Serializer.Deserialize<T>(stream);}publicstaticboolDeleteFromCache(string key){return db.KeyDelete(key);}publicboolDeleteKeysByPartOfName(string pattern){bool result =true;var keysPattern =string.Format("*{0}*", pattern);/*foreach (var key in server.Keys(pattern: keysPattern))
{
if (!db.KeyDelete(key))
result = false;
}*/return result;}/*public static void ClearCache()
{
server.FlushDatabase();
}*/#endregion}