db.Property机制解析
2010 11 1 01:32 PM 0 条评论 3008 次查看
分类:Google App Engine 标签:Google App Engine, Python
をつあおにまで GFW!
2010 11 1 01:32 PM 0 条评论 3008 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 11 1 10:32 AM 0 条评论 1732 次查看
分类: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 条评论 1407 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 10 31 03:49 AM 0 条评论 3496 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 10 27 10:14 PM 0 条评论 1510 次查看
分类:Google App Engine 标签:Google App Engine, Python
2010 10 26 11:34 AM 1 条评论 1387 次查看
分类:Google 标签:Google, JavaScript
2010 10 23 03:22 PM 0 条评论 1610 次查看
分类: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
2010 10 20 10:11 PM 0 条评论 1835 次查看
分类:Google App Engine 标签:Google App Engine
2010 10 20 12:43 AM 0 条评论 2565 次查看
分类:Google App Engine 标签:Google App Engine
2010 10 18 10:53 PM 0 条评论 2415 次查看
分类:Google App Engine 标签:Google App Engine, Python