ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 组件源码 /** * <b>方法描述:</b> 值长度 <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2018-05-09 10:57:24 <br/> * * @param key * 入参|key|{@link java.lang.String} * @param length * 出参|长度|{@link long} * @return -1 异常<br/> * 1 成功<br/> */ @Component(label = "值长度", style = "判断型", type = "同步组件", comment = "key对应的非string类型,就返回错误;key不存在返回0", version = "1.0.0", deprecated = false, author = "admin", date = "2018-05-09 10:57:24") @InParams(param = { @Param(name = "key", comment = "key", type = java.lang.String.class) }) @OutParams(param = { @Param(name = "length", comment = "长度", type = long.class) }) @Returns(returns = { @Return(id = "-1", desp = "异常"), @Return(id = "1", desp = "成功") }) public static ResultBase P_strlen(String key) { try { Long length=redisTemplate.opsForValue().size(key); return ResultBase.newSuccessResult(length); } catch (Exception e) { AppLog.error(e); return ResultBase.newExceptionResult("TPTR5013", "值长度 异常:" + AppLog.errorMsg(e)); } } 交易中组件使用方式: ![](https://img.kancloud.cn/6e/c4/6ec453fe02c26ec6ad3b85d9a6ac96e8_950x750.jpg) ## 参数说明及示例 key:redis中的key,示例: `"qwer"` 长度:对应key的值长度,示例: `__INNER__["length"]` > key对应的非string类型,就返回错误;key不存在返回0