だるろぐ

だるいぶろぐです

2010-09-01から1日間の記事一覧

AUTOLOADって遅いんじゃね?と思ったけど

use strict; use warnings; use Benchmark qw/:all/; our $AUTOLOAD; foo(); bar(); cmpthese( timethese(0, { normal => sub { normal() }, autoload => sub { autoload() }, }) ); sub call_foo { -foo } sub call_bar { -bar } sub normal { call_foo() e…

google analytics mobile

今までga.plを普通にCGIとして設置したことはあったけど、いわゆるバックエンドに実装した事は無かった。 で、今回することに。出来るgamの設置は2つ。 ga.plをCGIで 論外 ハンドラ書くなりディスパッチ先のメソッド書くなりしてバックエンドで 普通はこうす…