CONCAT key... value...

The `CONCAT` command like it name suggests concatenates the `value` to the String that is located at `key`.

Examples:

CONCAT poem "There is a field, I'll meet you there. "

Explanation:
  • CONCAT: This is the operation for concatenating a value to a String in the store. It is case insensitive.
  • poem: This is the key that is being altered in form of concatenation.
  • "There is a field, I'll meet you there": This is the value to be concatenated to `poem` value.

Requirements 🤖

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

Made with ❤️ by John Oye.