Exemplo n.º 1
0
 public ReadOnlyRedisDictionaryTests()
 {
     this._factory   = new RedisFactory();
     this.serializer = DefaultSerializer.Default; //new NewtonsoftJsonSerializer ();
     this.dict       = new ReadOnlyRedisDictionary <string, ShipName> (_factory.Database, "ShipInfo:ShipNames", serializer);
 }
Exemplo n.º 2
0
 public RedisDictionaryTests()
 {
     this._factory   = new RedisFactory();
     this.serializer = DefaultSerializer.Default;
     this.dict       = new RedisDictionary <string, Model> (_factory.Database, "_TEST:Model", serializer);
 }