Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デフォルトでは、GAE は一意のキーをデータベース エントリに追加します。
さらに、数値の一意のキーを持つことは可能ですか?
エリアス
いいえ - App Engine が一意性を適用する唯一の値は独自のキーです。ただし、自動生成されたキーの代わりに独自の数値キーを使用できます。その方法は、プラットフォームによって異なります。Python では、次のようなことを行います。
my_entity = ModelClass(key=db.Key.from_path('ModelClass', 1234), ...)