SET key... value...

Project Hermes allows for setting values in the store with a simple and intuitive syntax.
When you set a value that does not already it exist, it gets added to the store automatically with the value you put in your command and if it already exists, it overrides with the new value you put.

Examples:

SET myName John Oye

Explanation:
  • SET: This is the operation for setting a value. It is case insensitive.
  • myName: This is the key that is being set. It can be any value without a space.
  • John Oye: This is the value of the key being set. There is no need to wrap it in quotes because all of it is appended as a string and stored

Requirements 🤖

  • Java: Project Hermes was built with Java so it requires Java to run on your machine or server.

Made with ❤️ by John Oye.