beans.xml 452 B

123456789101112
  1. <?xml version="1.0" encoding="GB2312"?>
  2. <plugin version="1.0" id="wcm.cache">
  3. <beans>
  4. <!-- redis:com.trs.infra.cache.RedisCache, simple:com.trs.infra.cache.SimpleCache -->
  5. <bean id="cache" class="com.trs.infra.cache.RedisCache"
  6. singleton="true" />
  7. <!-- redis:com.trs.infra.cache.RedisCache, simple:com.trs.infra.cache.SimpleLRUCache -->
  8. <bean id="lruCache" class="com.trs.infra.cache.RedisCache"
  9. singleton="false" />
  10. </beans>
  11. </plugin>