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));