Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.83 KB

File metadata and controls

31 lines (24 loc) · 1.83 KB
title excerpt
redis
k6 Redis experimental API

The Redis module provides a client library that makes it possible to interact with Redis directly from a k6 script. With this module, you can:

  • Load test Redis
  • Use Redis as a data store for test-script logic.

Though the API intends to be thorough and extensive, it does not expose the whole Redis API. Instead, the intent is to expose Redis for use cases most appropriate to k6.

Class Description
Client Client that exposes allowed interactions with Redis.
Options Options used to configure the behavior of the Redis Client.

Notes on usage

The Client exposes a promise-based API. Unlike most other current k6 modules and extensions, which operate in a synchronous manner, the Redis Client operates in an asynchronous manner. In practice, this means that using the Redis Client's methods won't block test execution, and that the test will continue to run even if the Redis Client isn't ready to respond to the request. The async and await keywords enable asynchronous, promise-based behavior to be written in a cleaner style, avoiding the need to explicitly configure promise chains (for details, refer to the MDN documentation).