Django 1.0 on GAE

在gae上用django1.0 gae的使用就不多说了,它使用的是django0.96,想用1.0需要用到zip import zip import http://code.google.com/intl/zh-CN/appengine/articles/django10_zipimport.html gae helper for django http://code.google.com/intl/zh-CN/appengine/articles/appengine_helper_for_django.html django on gae,已打包好 http://github.com/Surgo/django-on-gae/tree 照上面文章设置既可,最后可以使用django式的manger, url, shell等

April 30, 2009 · notsobad

session in django

django中session选择文件形式存储,貌似没有自动垃圾清理的机制,所以会造成很多的无用session文件 删除30分钟没有活动的会话,这里默认每次页面访问都会读取session。 find /tmp/ -type f -name "sessionid*" -amin +30 | sudo xargs rm -f 附: 参考这里http://www.linuxselfhelp.com/gnu/findutils/html_chapter/find_2.html 文件的三种时间标志 ...

April 30, 2009 · notsobad

Notsobad.cn is coming back

notsobad.cn,又回来了,希望这次可以做好 买的是浪点带shell的linux空间 接下来要做的事: 将code snipper从gae移到这里来 经常的更新blog 用django作一些小工具 wordpress的自动更新脚本: #!/bin/sh # update my blog from svn, and get the language pack blog=notsobad.cn/public_html/blog/ (cd $blog; svn up) ( cd $blog/wp-includes/languages/; rm zh_CN.*; wget http://svn.automattic.com/wordpress-i18n/zh_CN/tags/2.7/messages/zh_CN.mo; wget http://svn.automattic.com/wordpress-i18n/zh_CN/tags/2.7/messages/zh_CN.po; )

April 27, 2009 · notsobad