iBATIS - 请求和会话范围
我在此处看到了拉里·米多斯 (Larry Meadors) 的以下评论< /a>
使用 readOnly="true" 和 serialize="false",你只会去 在当前会话中缓存, 并且缓存将是可变的。如果你 想要更长的缓存寿命,使 序列化=“真”。
此外,您可能只想使用 MEMORY缓存,并设置引用 键入“HARD”。这将保留 即使在 GC 之后,所有内容都在内存中。
拉里
我想知道 request
和 session range
对于 iBATIS
意味着什么?我理解这些与 Web 应用程序有关的术语,但不是从 iBATIS
缓存的角度来看的。
FWIW,我在 Web 应用程序中使用带有 Spring
支持(使用 Spring 提供的包装类)的 iBATIS
。
提前致谢!
I came across the following comment from Larry Meadors here
With readOnly="true" and
serialize="false", you are only going
to cache within the current session,
and the cache will be mutable. If you
want longer cache life, make
serialize="true".Also, you may want to just use the
MEMORY cache, and set the reference
type to HARD. That will keep
everything in memory even after a GC.Larry
I wanted to know what does request
and session scope
mean with respect to iBATIS
? I understand these terms with respect to a Web Application but not from iBATIS
cache point of view.
FWIW, I am using iBATIS
with Spring
support (using the wrapper classes that Spring provides) in a web application.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来作者正在讨论 iBatis 在 Web 应用程序上下文中的使用。
It appears that the author was discussing the use of iBatis in the context of a web application.