在CodeArts TestPlan接口脚本中调用RedisSet关键字
Redis字符串操作,根据指定的key设置对应的value值,可设置过期时间。
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
Ip |
是 |
String |
Redis数据库ip地址 |
Port |
是 |
Integer |
Redis数据库端口 |
Password |
是 |
String |
密码(登录密码属于个人敏感信息,须在环境参数中定义为敏感参数) |
Key |
是 |
String |
指定的key名称 |
Value |
是 |
String |
设置的value值 |
Expire |
否 |
Long |
过期时间,单位为秒。若使用默认值-1,则表示永不过期。使用Long类型的负整数则设置为永不过期。 |
RedisSet响应
状态:成功
参数 |
参数类型 |
描述 |
---|---|---|
result |
String |
设置key对应的value值返回结果。若设置成功则返回OK。若设置失败则返回错误信息。 |
RedisSet响应示例
{ "result" : "OK" }