2009년 8월 25일 화요일

mod_deflate, mod_expire



AddOutputFilterByType text/html text/plain text/css text/javascript application/x-javascript application/xml     application/xhtml+xml text/xml




apache1은 mod_gzip apache2는 mod_deflate

mod_expire는
debian 또는 ubuntu를 사용하기에 a2enmod를 이용해서 추가후 설정


ExpiresActive On
ExpiresByType image/jpg "access plus 1 day"
ExpiresByType image/gif "access plus 1 day"
ExpiresByType image/jpeg "access plus 1 day"
ExpiresByType image/png "access plus 1 day"
ExpiresByType text/css "access plus 1 day"

#ExpiresByType text/js "access plus 1 day"
#ExpiresByType text/javascript "access plus 1 day"
#ExpiresByType application/javascript "access plus 1 day"
#ExpiresByType application/x-javascript "access plus 1 day"


뭐 간단히 요런식으로... 심심하시면 header까서 확인까지...

참조 url : http://httpd.apache.org/docs/2.0/ko/mod/mod_deflate.html

2009년 8월 18일 화요일

hint를 이용한 채번

SELECT /*+ INDEX_DESC(TABLENNAME INDEXNAME) */ NVL(MAX(COL), 0) + 1 FROM TABLENAME WHERE ROWNUM = 1;


이때 COL은 NOT NULL.

2009년 8월 13일 목요일

curl

get
curl http://www.ex.com


post
curl -d "a=b&c=d" http://www.ex.com


cookie

cookie.txt로 저장
curl -D cookie.txt http://www.ex.com
cookie.txt에 있는 cookie값 전송
curl -b cookie.txt http://www.ex.com


더 필요한건 사이트에 가서...

참조 url : http://curl.haxx.se/