1

我在数据库中列出了一些项目,通过Reddit 的算法排序

就是这个:

def reddit_ranking(post):
    t = time.mktime(post.created_on.timetuple()) - 1134000000
    x = post.score

    if x>0: y=1
    elif x==0: y=-0
    else: y=-1

    if x<0: z=1
    else: z=x

    return (log(z) + y * t/45000)

我想知道是否有任何巧妙的方法可以使用Django 的 ORM来批量更新模型。

不这样做:

items = Item.objects.filter(created_on__gte=datetime.now()-timedelta(days=7))
for item in items:
    item.reddit_rank = reddit_rank(item)
    item.save()

我知道 F() 对象,但我不知道这个函数是否可以在 ORM 中执行。


有任何想法吗?

非常感谢您的帮助!

4

1 回答 1

2

手动完成并不需要太多工作:

from django.db import connection

items = Item.objects.filter(created_on__gte=datetime.now()-timedelta(days=7))
cursor = connection.cursor()
cursor.executemany("UPDATE myapp_item SET reddit_rank = %s WHERE id = %s",
                   [(reddit_rank(item), item.pk) for item in items])
cursor.close()
于 2010-03-24T18:00:23.950 回答