The documentation about storage configuration objects confuses me:
"The configuration object can be used any number of times. You must create a separate configuration object for each data warehouse call that uses it." (from AppEngine document)
So I can do something like this:
config = db.create_config(deadline=5) db.put(someModels, config=config) db.delete(someKeys, config=config)
Or I need to do something like this:
config = db.create_config(deadline=5) db.put(someModels, config=config) config = db.create_config(deadline=5) db.delete(someKeys, config=config)
?
thanks
source share