Skip to content

Commit

Permalink
fix the table in kv docs
Browse files Browse the repository at this point in the history
  • Loading branch information
j03-dev committed Aug 12, 2024
1 parent 2f06e1f commit 31ae81d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions website/docs/reference/runtimes/kv/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ The KvRuntime enables interaction with a Redis database by setting, retrieving,
/>


| **Operation** | **Description** | **Method** |
|---------------|-------------------------------------------------------------|--------------------|
| `get` | Retrieve the value associated with a specific key. | `kv.get()` |
| `set` | Assign a value to a specific key. | `kv.set()` |
| `delete` | Remove a key and its associated value from Redis. | `kv.delete()` |
| `keys` | List all keys currently stored in Redis. | `kv.keys()` |
| `values` | List all values currently stored in Redis. | `kv.values()` |
+| **Operation** | **Description** | **Method** |
+| ------------- | -------------------------------------------------- | ------------- |
+| `get` | Retrieve the value associated with a specific key. | `kv.get()` |
+| `set` | Assign a value to a specific key. | `kv.set()` |
+| `delete` | Remove a key and its associated value from Redis. | `kv.delete()` |
+| `keys` | List all keys currently stored in Redis. | `kv.keys()` |
+| `values` | List all values currently stored in Redis. | `kv.values()` |

0 comments on commit 31ae81d

Please sign in to comment.