Console syntax

- You can send multiple fields at once, but all commands and parameters must be separated by ";" and every parameter/command must be in new line.

  1. @wakeup "CLUSTER_ADDRESS";
  2. @reg_set foo:"bar";
  3. foo2:"bar2";
  4. foo3:"bar3";

Values of parameters should be quoted by " char

- Setting parameters must follow syntax:

  1. key:"value";

or

  1. key1:"value1", key2:"value2", key3:"value3";

- Passing arguments to commands must be done after space:

  1. @command "argument";

or

  1. @command argument1, argument2, argument3;

(multiple arguments without quotes)


- Passing key:"value" assignments in commands must follow syntax:

  1. @command key:"value";

or

  1. @command key1:"value1", key2:"value2", key3:"value3";

- You can mix parameters and commands:

  1. @reg_set foo:"bar";
  2. foo:"bar";
  3. @to "CLUSTER_ADDRESS";
Full API Documentation is included in Skynet packages available on GitHub.