新版Twitter在链接中加入“#!”的原因
2010 11 3 02:01 PM 0 条评论 1995 次查看
分类:编程 标签:无
をつあおにまで GFW!
2010 11 3 02:01 PM 0 条评论 1995 次查看
分类:编程 标签:无
2010 11 2 02:46 AM 108 条评论 23601 次查看
分类:Google App Engine 标签:Python, Google App Engine
2010 11 1 01:32 PM 0 条评论 3005 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 11 1 10:32 AM 0 条评论 1728 次查看
分类:Google App Engine 标签:Google App Engine, Python
from time import time
class Comment(db.Expando):
email = db.StringProperty(required=True)
content = db.TextProperty()
format = db.IntegerProperty(default=0, indexed=False)
approved = db.BooleanProperty(default=True)
time = db.DateTimeProperty(auto_now_add=True)
mod_time = db.DateTimeProperty(auto_now_add=True, indexed=False)
t=time()
Comment.all().fetch(1000)
print time()-t
从后台的执行情况来看,cpu时间是11078~11799ms。改成db.Model后,cpu时间是10319~10959ms,差不多少了0.8秒。2010 10 31 03:36 PM 1 条评论 1405 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 10 31 03:49 AM 0 条评论 3493 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 10 27 10:14 PM 0 条评论 1508 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 10 26 11:34 AM 1 条评论 1386 次查看
分类:Google 标签:Google, JavaScript
2010 10 24 03:49 AM 2 条评论 2524 次查看
2010 10 23 03:22 PM 0 条评论 1609 次查看
分类:Google App Engine 标签:Google App Engine, Python
<class 'pickle.PicklingError'>: Can't pickle <function generate_categories at 0x6a4387e469f6a3b8>: it's not found as model.generate_categories研究了半天才明白过来,model.generate_categories这个玩意我当然没有定义,我是在model模块里调用Category.generate_categories()这个静态函数。看来pickle这个玩意比较傻,只能识别全局对象。
generate_categories = Category.generate_categories