将 GAE 可扩展性移植到开源框架的最简单方法
假设我想使用 Spring Framework 等开源框架制作一个 java webapp,并希望使其易于扩展(如 Google App 引擎)。
我有什么选择(除了在 GAE 中运行之外)?
您会选择哪种mvc-framework、db-persistence框架?
以数据库为瓶颈,有没有办法模仿 BigTable 在 Java Webapp 世界中的行为?
Say I want to make a java webapp using open source framework such as Spring Framework, and want to make it easily scalable (like Google App engine).
What options do I have (other than running it in GAE) ?
Which mvc-framework, db-persistence framework would you choose?
With database as a bottleneck, is there a way to mimic how BigTable behaves in the Java Webapp world ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AppScale 是 GAE 兼容框架。为 GAE 编写的代码应该可以在 appscale 上运行。
AppScale is a GAE compatible framework. Code written for GAE should work on appscale.
如果您正在寻找基于 Java 的 BigTable 实现,请查看 Hadoop 和它是子项目HBase。
如果Java不是必需的(它毕竟是一个服务器),那么您还可以看看超级。
If you are looking for Java-based BigTable implementation, take a look at Hadoop and it's sub-project HBase.
If Java is not a requirement (it's a server after all), then you can also take a look at hypertable.