- @wakeup "CLUSTER_ADDRESS";
- @reg_set foo:"bar";
- foo2:"bar2";
- foo3:"bar3";
Values of parameters should be quoted by " char
- Setting parameters must follow syntax:
- key:"value";
or
- key1:"value1", key2:"value2", key3:"value3";
- Passing arguments to commands must be done after space:
- @command "argument";
or
- @command argument1, argument2, argument3;
(multiple arguments without quotes)
- Passing key:"value" assignments in commands must follow syntax:
- @command key:"value";
or
- @command key1:"value1", key2:"value2", key3:"value3";
- You can mix parameters and commands:
- @reg_set foo:"bar";
- foo:"bar";
- @to "CLUSTER_ADDRESS";