Skip to content
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,17 @@ ems-cmd forget http://10.20.30.40:6330 -space Default -key path1\path2\abc
* `-space`: The name of the space, e.g., `Default`.
* `-key`: The key for the shared memory record.

#### 'Increment' (increment shared memory value)
This command increments a shared memory record.

```
ems-cmd increment http://10.20.30.40:6330 -space Default -key path1\path2\abc -by 2
```
###### Parameters
* `-space`: The name of the space, e.g., `Default`.
* `-key`: The key for the shared memory record. If a value with this key does not exist, the command fails.
* `-by`: The increment value. Must be a decimal number (negative and fractional are allowed). If omitted, equals to 1.

### SSL errors
If you want to suppress SSL errors, use the additional parameter `/suppress-ssl-errors`.
```
Expand Down