Seam 中的会话大小是多少?
我想知道我的应用程序中的会话大小以对其进行优化。为了找到这个大小,我使用 mat 进行堆转储并对其进行分析。
Seam 在哪里存储会话和会话 bean?
我虽然它在 org.apache.catalina.session.StandardSession 中,但显然没有(我在这个 bean 中只有 2 个八位字节)。
I would like to know my session size in my application to optimize it. To find this size, I use mat which does a heap dump and analyzes it.
Where does Seam store session and conversation beans?
I though it was in org.apache.catalina.session.StandardSession but visibly no (I have only 2 octets in this bean).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Seam 将所有内容存储在 HttpSession 中。
Seam stores everything in the HttpSession.