vvw

Results 2 issues of vvw

![image](https://user-images.githubusercontent.com/6481696/165005311-fc678463-70b8-415f-862b-1c17204a58ab.png) 这里可以不用作本地缓存,因为Redission 内部的重入本身就是按客户端id+线程id来判断的,这里加了本地缓存,如果业务key很多的话,就可能这里的内存占用会很大

### Question ` CachedBodyOutputMessage outputMessage = ResponseUtils.newCachedBodyOutputMessage(exchange); return serverRequest.bodyToMono(String.class) .switchIfEmpty(Mono.defer(() -> Mono.just(""))) .flatMap(convert) .flatMap(body -> { BodyInserter bodyInserter = BodyInserters.fromValue(body); return bodyInserter.insert(outputMessage, new BodyInserterContext()); }).then(Mono.defer(() -> { ServerHttpRequestDecorator decorator =...

type: question