DJango Appengine Bforms

发布于 2024-09-15 18:43:45 字数 327 浏览 8 评论 0原文

我想了解 Django 和 Appengine 如何协同工作?

  1. 首先,问题:这是一支优秀的团队吗? 经验丰富,什么是可能的,什么是不可能的,那就太好了。

  2. 我还阅读了一些模块,例如 auth、admin 无法工作。 但这篇文章相当旧,所以也许有更新。

  3. 在该教程中,必须导入 bforms。

那是什么? Django 模块?应用引擎? Python?大表?

  1. Bigtable 与常规 SQL、MySQL 有何不同?

谢谢

I am trying to understand how Django and Appengine work together?

  1. First, question: Is this a good team?
    Experience, what is possible and what not, would be great.

  2. I also read some modules like auth, admin wont work.
    But the article is rather old, so maybe there is an update.

  3. And in that tutorial one has to import bforms.

What is that?
Django Module? Appengine? Python? Bigtable?

  1. How is Bigtable different from regular SQL, MySQL?

Thanks

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

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

发布评论

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

评论(1

墟烟 2024-09-22 18:43:45

常规 SQL 和 MySQL 仅为一台计算机而设计,在云计算中会失败,因为一个数据库需要 1,000 台计算机。因此,下一代数据库(例如bigtable)被创建来将数据分布到许多数据库服务器上。它们被称为 NoSQL 数据库,意为“Not Only SQL”。有关 NoSQL 数据库的列表,请参阅 http://nosql-database.org/。谷歌应用程序引擎显然允许您使用bigtable结构,因此您的数据分布在云中的十几个数据库服务器上。亚马逊的简单数据库也是如此。

Regular SQL and MySQL are designed for one computer only and fail in cloud computing where you need 1,000 computers for one database. Thus the next generation databases, like bigtable, were created to distribute the data over many database servers. They are called NoSQL databases for "Not Only SQL." See http://nosql-database.org/ for a list of NoSQL databases. The google app engine apparently allows you to use the bigtable structure so you data is distributed over a dozen database servers in the cloud. So does Amazon's simple db.

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