Google App Engine数据存储大小限制是什么/它是如何扩展的? [英] What is Google App Engine datastore size limit / how is it scalable?

查看:103
本文介绍了Google App Engine数据存储大小限制是什么/它是如何扩展的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是Google App Engine数据存储大小限制/如何扩展?

What is Google App Engine datastore size limit / how it is scalable?

我读到的信息数据存储的速度有多快,API的限制是什么,但没有找到相关信息大的可能是数据存储。

I was read information how fast is datastore and what is API limitation but not find informaition how large could be datastore.

推荐答案

没有限制你永远不会达到(除了你的口袋里)。

There is no limit you will ever reach (except thats of your pocket).

从google.appengine.ext.ndb key.py:Integer ID必须至少为1且小于2 ** 63。
这些是您在插入对象时自动分配的值。

From google.appengine.ext.ndb key.py: Integer ids must be at least 1 and less than 2**63. These are the one you'll get automatically assigned when inserting an object.

但是,这并不限制您使用自定义插入更多对象的能力(字符串)键。
它的编码形式(base64)可以长达500个字节,这比128位地址空间多,这比你填充的空间要大。 (请参阅 https://blogs.oracle.com/bonwick/entry/128_bit_storage_are_you

However, this does not limit your ability to insert more objects using custom (string) keys. Its encoded form (base64) can be up to 500 bytes long, which is more than a 128 Bit Address-space, which is more than you could ever fill. (See https://blogs.oracle.com/bonwick/entry/128_bit_storage_are_you )

这篇关于Google App Engine数据存储大小限制是什么/它是如何扩展的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆