Appengine - Upgrading from standard DB to NDB - ReferenceProperties

后端 未结 1 1707
[愿得一人]
[愿得一人] 2021-01-02 18:04

I have an AppEngine application that I am considering upgrading to use the NDB database.

In my application, I have millions of objects that have old-style db refere

1条回答
  •  清酒与你
    2021-01-02 18:32

    Good news, you don't have to make any changes to your persisted data, as ext.db and ndb read and write the exact same data.

    Here's the quote from the NDB Cheat Sheet:

    No Datastore Changes Needed!

    In case you wondered, despite the different APIs, NDB and the old ext.db package write exactly the same data to the Datastore. That means you don’t have to do any conversion to your datastore, and you can happily mix and match NDB and ext.db code, as long as the schema you use is equivalent. You can even convert between ext.db and NDB keys using ndb.Key.from_old_key() and key.to_old_key().

    The cheat sheet is a great guide to convert your model definitions. For example, changing your MailMessageModel should be as easy as:

    before:

    class MailMessage(db.Model):
        m_text = db.TextProperty()
        m_from = db.ReferenceProperty(reference_class=UserModel)
        m_to = db.ReferenceProperty(reference_class=UserModel)
    

    after:

    class MailMessage(ndb.Model):
        m_text = ndb.TextProperty()
        m_from = ndb.KeyProperty(kind=UserModel)
        m_to = ndb.KeyProperty(kind=UserModel)
    

    I highly recommend using the cheat sheet to assist you with your migration.

    0 讨论(0)
提交回复
热议问题