Google App Engine - JCache 还是 Memcache API?
将 JCache (JSR 107) 或 Memcache API 与 Google App Engine 结合使用是否有任何优点和/或缺点?如果有,它们是什么?
Are there any advantages and/or disadvantages to using either JCache (JSR 107) or the Memcache API with Google App Engine? If so, what are they?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 JSR 107 定义的 JCache API 与使用 GAE Memcache API 完全相同。也就是说,GAE Memcache API 的外观和行为就像 Java 代码中的 JCache API。
文档:
这意味着,如果您已经拥有使用 JCache 的 Java 应用程序,或者您决定将应用程序从 App Engine 中移出,则无需更改任何 Memcache 代码即可完成此操作。
Using the JCache API as defined by JSR 107 is exactly the same as using the GAE Memcache API. That is, the GAE Memcache API looks and act just like the JCache API in your Java code.
Quoth the docs:
This means that if you've already got a Java app that uses JCache, or should you decide to move your app off of App Engine, you can do it without changing any of your Memcache code.