문제

I know that there is a default limit of 100kb on the request messages that the client sends to one of the controllers in my Play project. What about the size on the response messages? I have a huge String JSON that I want to send as a response. Is there anything that I have to specify additionally in Play framework to handle such huge Strings in the response messages?

도움이 되었습니까?

해결책

Browsers have certain limitations, but other than that, the memory is the limit. You should however stream large responses in order to avoid clogging up RAM.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top