2009-09-21から1日間の記事一覧

デバッグ

perl -d script.pl 最低限以下だけ覚えておけば使えそうな気がする。後はhelp&使いながら覚える戦法。 h #ヘルプ s #ステップ実行 l #次の行表示 b #ブレークポイント設定 d #ブレークポイント解除 V PKG VARS #パッケージ変数 y #レキシカル変数 T #スタッ…

Necessity to use Index

sql

SQLに疎いのでインデックスの有無によりどれくらいレスポンスが違うのか試してみた。 スキーマはこんな感じ。post_dataにはuser_id, post_dateでインデックスを張る。 create table post_data ( post_id int unsigned not null, #投稿ID user_id int unsigne…