Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(materia-kv): add lolwut command #479

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/doc/addons/materia-kv.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
| `INCRBY` | Increments the number stored at `key` by the given `increment`. If the `key` doesn't exist, it is set to `0` before performing the operation. An error is returned if `key` contains a value of the wrong type or contains a string that can not be represented as integer. This operation is limited to 64-bit signed integers. |
| `INFO` | The `INFO` command returns information and statistics about the server in a format that is simple to parse by computers and easy to read by humans. |
| `KEYS` | Returns all keys matching `pattern`, can be `*` |
| `LOLWUT` | Returns Materia KV's version and might be hiding an easter egg 👀 |

Check failure on line 162 in content/doc/addons/materia-kv.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/doc/addons/materia-kv.md#L162

[Vale.Spelling] Did you really mean 'Materia'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'Materia'?", "location": {"path": "content/doc/addons/materia-kv.md", "range": {"start": {"line": 162, "column": 22}}}, "severity": "ERROR"}

Check failure on line 162 in content/doc/addons/materia-kv.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/doc/addons/materia-kv.md#L162

[Vale.Spelling] Did you really mean 'KV's'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'KV's'?", "location": {"path": "content/doc/addons/materia-kv.md", "range": {"start": {"line": 162, "column": 30}}}, "severity": "ERROR"}

Check failure on line 162 in content/doc/addons/materia-kv.md

View workflow job for this annotation

GitHub Actions / vale

[vale] content/doc/addons/materia-kv.md#L162

[Vale.Spelling] Did you really mean 'easter'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'easter'?", "location": {"path": "content/doc/addons/materia-kv.md", "range": {"start": {"line": 162, "column": 66}}}, "severity": "ERROR"}
| `MGET` | Returns the values of all specified keys. For every key that doesn't hold a string value or doesn't exist, the special value `nil` is returned. Because of this, the operation never fails. |
| `MSET` | Sets the given keys to their respective values. `MSET` replaces existing values with new values, just as regular `SET`. `MSET` is atomic, so all given keys are set at once. It is not possible for clients to see that some keys were updated while others are unchanged. |
| `PERSIST` | Remove the existing time to live associated with the `key`. |
Expand Down
Loading