Release Lock
lock_releaseRelease a lock early using the token returned by lock_acquire. Only the token holder can release; without the token the lock simply expires on its own. Returns released=false if the token is wrong or the lock already expired.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Lock or counter name within the namespace. | |
| token | Yes | The release token returned by lock_acquire. | |
| namespace | Yes | Your private namespace. Pick a long unique string; it acts as the access key. |