This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
Client.hincrby(key, field, increment)
Increments the integer value of field in the hash stored at key by increment. If key does not exist, a new key holding a hash is created. If field does not exist the value is set to 0 before the operation is set to 0 before the operation is performed.
Parameters
Returns
Example
import redis from 'k6/experimental/redis';
// Instantiate a new redis client
const redisClient = new redis.Client('redis://localhost:6379');
export default async function () {
await redisClient.hset('myhash', 'myfield', 10);
await redisClient.hincrby('myhash', 'myfield', 20);
}

