Roshan Khatri 10d2793bb9
Adds JSON.MSET command (#39)
#### JSON.MSET
Set JSON values for multiple keys. The operation is atomic. Either all values are set or none is set.

#### Syntax
```
JSON.MSET <key> <path> <value> [key <path> <value> ...]
```

* key - required, JSON key
* path - required, a JSON path
* value - required, JSON value
#### Return
* Simple String 'OK' on success
* Error on failure
---------

Signed-off-by: Roshan Khatri <rvkhatri@amazon.com>
2025-03-03 15:19:36 -08:00
..
2024-11-29 07:47:54 -08:00

Integration Tests

This directory contains integration tests that verify the interaction between vlkaye-server and valkeyJSON module features working together. Unlike unit tests that test individual components in isolation, these tests validate the system's behavior as a whole.

Requirements

python 3.9
pytest 4