根据服务名称和参数缓存 Hessian 服务结果
我必须打电话从 Hessian 服务获取很多数据,服务速度相当慢。因为 Hessian 调用不会更新数据,结果也很少改变。我想知道是否可以在预定义的时间内根据服务名称和参数缓存结果。我将 Hessian 与 Spring 一起使用。 谢谢, 洛克
I have to call to get many data from Hessian services, the services are quite slow. Because the Hessian calls do not update data and the results are rarely changed. I wonder is there anyway to cache the result base on the service name and parameters in a predefined time. I use Hessian with Spring.
Thanks,
Loc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会建立一个缓存,当你有缓存未命中时,然后询问 Hessian 服务。
I would build a cache and when you have a cache miss, then ask the Hessian service.