假设我有一个域类
class Profile{
String name
byte[] logo
}
和控制器:
class ImageController {
def renderImage ={
def image = Profile.get(params.id).logo
if (image) {
response.setContentLength(image.length)
response.getOutputStream().write(image)
} else {
response.sendError(404)
}
}
}
和gsp:
<img width="48"
height="48"
src="${createLink(controller: 'image', action: 'renderImage', id: 1)}">
好的,到目前为止一切顺利。图像渲染得很好,我很高兴。但是,由于gsp片段是我的主要布局的一部分,因此每次重新加载页面时都会呈现图像。
我的问题:有没有办法缓存这个图像(blob mysql)?我打开了二级缓存等。但我不确定图像是否被缓存。你会怎么做?
感谢。
答案 0 :(得分:2)
将static mapping = { cache true }
添加到您的个人资料域类以启用缓存。只要您使用get(id)
获取Profile对象,它就会使用缓存版本。如果您使用的是更复杂的查询,则需要让grails知道查询也可以缓存。
请参阅Grails手册中的Caching section。此外,打开hibernate SQL logging以确认对象已缓存可能会有所帮助。