Beispiel #1
0
 //Setter
 public static void RedisLInsert(string key, RedisInsert insertType, string pivot, object value)
 {
     Redis.LInsert(key, insertType, pivot, value);
 }
Beispiel #2
0
 public static RedisInt LInsert(string key, RedisInsert insertType, string pivot, object value)
 {
     return(new RedisInt("LINSERT", key, insertType.ToString().ToUpperInvariant(), pivot, value));
 }
 public long LInsert(string key, RedisInsert insertType, string pivot, object value)
 {
     return(Multi((client) => client.LInsert(key, insertType, pivot, value)));
 }
 public Task <long> LInsert(string key, RedisInsert insertType, string pivot, object value)
 {
     return(Write(RedisCommand.LInsert(key, insertType, pivot, value)));
 }
Beispiel #5
0
 public Task <long> LInsertAsync(string key, RedisInsert insertType, object pivot, object value)
 {
     throw new NotImplementedException();
 }
 public Task <long> LInsertAsync(string key, RedisInsert insertType, string pivot, object value) => MultiAsync(ListCommands.LInsert(key, insertType, pivot, value));
 public long LInsert(string key, RedisInsert insertType, string pivot, object value) => Multi(ListCommands.LInsert(key, insertType, pivot, value));