2010-01-01から1ヶ月間の記事一覧

PostgreSQL order by field

PostgreSQL で order by fieldhttp://www.postgres.cz/index.php/PostgreSQL_SQL_Tricks Source: http://stackoverflow.com/questions/1309624/simulating-mysqls-order-by-field-in-postgresql When we can explicitly to specify some order, we should to…

Apache accf_http

http://www.skymerica.com/blog/yotsumoto/arch/2007/06/09/000797.htmlロード # kldload accf_http.ko 確認 $ kldstat Id Refs Address Size Name 1 2 0xffffffff80100000 c02250 kernel 2 1 0xffffffff80d03000 14d0 accf_http.koロードされてない場合 $ k…

urldecode

http://www.whizkidtech.redprince.net/urlendec/awk の場合 http://geni.ath.cx/unix.html#_awk

pylons

コントローラの __before__ とキャッシュ class UserController(BaseController): def __before__(self): return True @beaker_cache(expire=180, type='memory') def index(self): return "This is the index." __before__() はキャッシュされず毎回呼ばれ…