私のアプリケーションでは、さまざまな db Kind がいくつかの種類のプロパティで定義されています (インデックスが作成されているものとインデックスが作成されていないものがあります)
しかし驚いたことに、20 GB で約 950 MB のNullサイズ間隔を見て、
これを最適化する方法はありますか?
注: いくつかの種類のプロパティにはデフォルト値がありません。デフォルト値を定義する必要がありますか?
元。
class terminals(db.Model):
location_code = db.StringProperty()
terminal_code = db.StringProperty(default='')
pass_code = db.StringProperty(indexed=False)
print_format = db.StringProperty(indexed=False)
start_invoice_no = db.IntegerProperty(indexed=False, default=1)
next_invoice_no = db.IntegerProperty(indexed=False)
use_jzebra = db.BooleanProperty(default=False, indexed=False)
last_doc_details = db.TextProperty(default='{}')
last_modified_on = db.DateTimeProperty(auto_now=True)
また、一部のプロパティはめったに使用されません。