Оптимальный размер буфера для свойства JSP и autoflush

У кого-нибудь есть рекомендации по настройке оптимального размера буфера для JSP? Вы можете использовать следующую директиву страницы, чтобы установить размер буфера в JSP.

    <%@page buffer="xxxkb" autoFlush="true" %>

Мои вопросы следующие

My understanding is that the less buffer size that you use, the performance is better for client side browsers. Does my assumption correct? If you think otherwise, please explain

What should be the optimal buffer size

Is there a way to know what is the default buffer size?

Setting autoflush to true should flush the buffer once the max size reached. If you set it to false, its upto you to decide when to flush

Ответы на вопрос(1)

Ваш ответ на вопрос