public RedisCommand FlushAll() { var builder = new RedisInlineCommandBuilder(); builder.SetCommand("FLUSHALL"); return(new RedisCommand(_executor, builder)); }
private static RedisInlineCommandBuilder For0Args(string command) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); return(builder); }
public RedisCommand Set(string key, string value) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand("SET"); builder.AddInlineArgument(key); builder.SetData(value); return new RedisCommand(this._executor, builder); }
private static RedisInlineCommandBuilder For1Args(string command, string key) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); return(builder); }
private static RedisInlineCommandBuilder For2Args(string command, string key, byte[] value) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); builder.SetData(value); return(builder); }
public RedisCommand Set(string key, string value) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand("SET"); builder.AddInlineArgument(key); builder.SetData(value); return(new RedisCommand(this._executor, builder)); }
public RedisCommandWithMultiBytes MultiGet(params string[] keys) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand("MGET"); foreach (var key in keys) { builder.AddInlineArgument(key); } return new RedisCommandWithMultiBytes(_executor, builder); }
private static RedisInlineCommandBuilder For3Args(string command, string key, int v1, int v2) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); builder.AddInlineArgument(v1.ToString()); builder.AddInlineArgument(v2.ToString()); return(builder); }
private static RedisInlineCommandBuilder For3Args(string command, string key, string v1, byte[] data) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); builder.AddInlineArgument(v1); builder.SetData(data); return(builder); }
public RedisCommandWithMultiBytes MultiGet(params string[] keys) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand("MGET"); foreach (var key in keys) { builder.AddInlineArgument(key); } return(new RedisCommandWithMultiBytes(_executor, builder)); }
private static RedisInlineCommandBuilder For1Args(string command, string key) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); return builder; }
private static RedisInlineCommandBuilder For0Args(string command) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); return builder; }
public RedisCommand FlushAll() { var builder = new RedisInlineCommandBuilder(); builder.SetCommand("FLUSHALL"); return new RedisCommand(_executor, builder); }
private static RedisInlineCommandBuilder For3Args(string command, string key, int v1, int v2) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); builder.AddInlineArgument(v1.ToString()); builder.AddInlineArgument(v2.ToString()); return builder; }
private static RedisInlineCommandBuilder For3Args(string command, string key, string v1, byte[] data) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); builder.AddInlineArgument(v1); builder.SetData(data); return builder; }
private static RedisInlineCommandBuilder For2Args(string command, string key, byte[] value) { var builder = new RedisInlineCommandBuilder(); builder.SetCommand(command); builder.AddInlineArgument(key); builder.SetData(value); return builder; }