add docs for db and redis

This commit is contained in:
Joel Wetzell
2026-03-21 11:12:06 -05:00
parent 23aa7d81e0
commit 24f2b45e07
8 changed files with 126 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
---
title: Get
sidebar:
order: 1
---
The `kv.get` processor gets the value associated with a key from a compatible module. The output payload is the value if the key is found.
- **type**: `kv.get`
- **params**:
- **module**: id of the module
- **key**: the key to look up
### Example
This will attempt to get the value for the `counter` key from the module with an id of `redis`
```
- type: kv.get
params:
module: redis
key: counter
```