将整个表加载到缓存 Grails 中

发布于 2024-11-04 23:32:42 字数 234 浏览 7 评论 0原文

是否可以在 Grails 启动时将整个表加载到缓存中?

例如,我有 2 个表,每个表有 5000 条记录,用作静态只读数据。不过,该数据受到的打击最为严重,因为其他表上的所有信息都源自该只读表。

我知道 grails 有一个缓存使用场景,但是在很短的时间后,这些信息会不断地从缓存中被逐出,并且它也只会在下一个请求时重新缓存。

基本上试图通过不必访问该静态数据的数据库来减少响应时间。

谢谢

Is it possible to load an entire table into cache on Grails startup?

For example I have a 2 tables with 5000 records each that is used as static read only data. This data is the most hard hit though since all information on other tables is derived from this read-only table.

I know grails has a cache usage scenario but this infomation is constantly being evicted from the cache after a short amount of time and it also only gets re-cached on the next request.

Basically trying to reduce response times by not having to access the database for this static data.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅窗月明清似水 2024-11-11 23:32:42

您可以使用 ehcache.xml 配置缓存行为。如果您没有,缓存将配置为默认值,但如果您有,则会使用它。将其放入 grails-app/conf 中,它将被复制到类路径中。

假设您的域类是 com.yourcompany.yourapp.YourDomainClass,您可以指定要缓存的元素数量并设置永恒= true,这样它们就不会被丢弃:

<ehcache>

   <diskStore path='java.io.tmpdir' />

   <defaultCache
      maxElementsInMemory='10000'
      eternal='false'
      timeToIdleSeconds='120'
      timeToLiveSeconds='120'
      overflowToDisk='true'
      maxElementsOnDisk='10000000'
      diskPersistent='false'
      diskExpiryThreadIntervalSeconds='120'
      memoryStoreEvictionPolicy='LRU'
   />

   <cache name='com.yourcompany.yourapp.YourDomainClass'
      maxElementsInMemory='10000'
      eternal='true'
      overflowToDisk='false'
   />

   <!-- hibernate stuff -->
   <cache name='org.hibernate.cache.StandardQueryCache'
      maxElementsInMemory='50'
      eternal='false'
      timeToLiveSeconds='120'
      maxElementsOnDisk='0'
   />

   <cache
      name='org.hibernate.cache.UpdateTimestampsCache'
      maxElementsInMemory='5000'
      eternal='true'
      maxElementsOnDisk='0'
   />

</ehcache>

有关如何配置的更多信息ehcache.xml 请参阅 http://ehcache.org/ehcache.xml ,其中有很多文档评论。

完成此操作后,您的 BootStrap.groovy 应该如下所示:

import com.yourcompany.yourapp.YourDomainClass

class BootStrap {

   def init = { servletContext ->
      def ids = YourDomainClass.executeQuery('select id from YourDomainClass')
      for (id in ids) {
         YourDomainClass.get(id)
      }
   }
}

为每个实例调用 get() 后,将来调用 get()将使用二级缓存。

You can configure the cache behavior with ehcache.xml. If you don't have one the caches are configured with default values but if you do it's used instead. Put it in grails-app/conf and it will be copied to the classpath.

Assuming your domain class is com.yourcompany.yourapp.YourDomainClass, you can specify the number of elements to cache and set eternal = true so they aren't discarded:

<ehcache>

   <diskStore path='java.io.tmpdir' />

   <defaultCache
      maxElementsInMemory='10000'
      eternal='false'
      timeToIdleSeconds='120'
      timeToLiveSeconds='120'
      overflowToDisk='true'
      maxElementsOnDisk='10000000'
      diskPersistent='false'
      diskExpiryThreadIntervalSeconds='120'
      memoryStoreEvictionPolicy='LRU'
   />

   <cache name='com.yourcompany.yourapp.YourDomainClass'
      maxElementsInMemory='10000'
      eternal='true'
      overflowToDisk='false'
   />

   <!-- hibernate stuff -->
   <cache name='org.hibernate.cache.StandardQueryCache'
      maxElementsInMemory='50'
      eternal='false'
      timeToLiveSeconds='120'
      maxElementsOnDisk='0'
   />

   <cache
      name='org.hibernate.cache.UpdateTimestampsCache'
      maxElementsInMemory='5000'
      eternal='true'
      maxElementsOnDisk='0'
   />

</ehcache>

For more information about how to configure ehcache.xml see http://ehcache.org/ehcache.xml which has a lot of documentation in the comments.

Having done that, your BootStrap.groovy should look something like this:

import com.yourcompany.yourapp.YourDomainClass

class BootStrap {

   def init = { servletContext ->
      def ids = YourDomainClass.executeQuery('select id from YourDomainClass')
      for (id in ids) {
         YourDomainClass.get(id)
      }
   }
}

Having called get() for each instance, future calls to get() will use the 2nd-level cache.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文