I have a list of Document objects, which have an existing id
in the database. I've updated them, and now I'd like to put them all ack into the database at their existing ids. Is there a way to do this in one query?
An example
def _update_podcast(podcast):
data = fetch_podcast(podcast.url)
podcast.url = data.url
#... more similar updates to podcast
def update_podcasts()
podcasts = Podcast.objects(last_updated__lte=datetime.datetime.now() - datetime.timedelta(seconds=3600))
for p in podcasts:
_update_podcast(p)
# At this point, every podcast in podcasts is updated.
# Now how do I save the modified podcasts with a single query?