dns cache

ubuntu8.10, 网通宽带,无线路由 速度非常慢,可以感觉到4-5秒的延时,明显是dns查询的时间。 装了dnsmasq,然后修改resolv.conf 23:39:13@/etc/ppp> cat /etc/resolv.conf # Generated by NetworkManager nameserver 127.0.0.1 不过网络重新连接后还是会被网通的dns覆盖掉, 如下即可 之后重启网络,速度飞快

April 30, 2009 · notsobad

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