Monthly Archives: 7月 2010

Eclipseでメモリリーク調査

Struts2を利用してアプリを書いているのだが、なぜかメモリリークする・・・おかしい。このままだとまずいので、今回はEclipse 3.6(Helios)にプロファイラのEclipse Test and Perform … Continue reading

Posted in Java | Leave a comment

Struts 2でのメモリリーク

Struts2(2.1.8)を利用してアプリを制作していたのだが、なぜかメモリリークがするので調査したところ、Struts 2.1.8.1未満はメモリリークの不具合があるとのこと。 Struts 2.1.8.1のリリース … Continue reading

Posted in Java | 1 Comment

OpenLDAP 2.4でUnable to allocate memory for transaction detail

OpenLDAP2.4に対して同時接続数を増やすテストを行っていたところ、以下のエラーがログに出力されました。 「Unable to allocate memory for transaction detail」 何だ? … Continue reading

Posted in Linux, solaris | Leave a comment

JMeterで高負荷をかけたい場合

負荷測定ツールにOSSのApache JMeterというものがあります。かなり汎用的でつぶしがきくよいツールで、私もよく使います。JMeterについては以下の資料がよくまとまっています。 Apache JMeterで 負 … Continue reading

Posted in Linux | Leave a comment

JuniperのSRXについて

ファイアウォールの製品動向を調べるためJuniperのサイトを調べたら、SRXシリーズというものがあることを発見。 ISG/SSG : NetScreenの後継ScreenOSを利用(Junos OSにバージョンアップも … Continue reading

Posted in コンピュータ | Leave a comment

OpenLDAP 2.4のチューニングについて

OpenLDAP 2.4のチューニングについて調査していたら、日本LDAPユーザ会にいい資料がありました。 さあそ の先へ、OpenLDAPパフォーマンスチューニング これは、便利。早速参考にさせて頂きます。 ところで、 … Continue reading

Posted in Linux, solaris | Leave a comment

Time::HiResの使い方

Perlプログラムのプロファイルを行うときに、ミリ秒単位で応答時間を取得したい場合がある。 そんなときにはTime::HiResがおすすめ。簡単にミリ秒で取得できます。 use Time::HiRes qw( uslee … Continue reading

Posted in Perl | Leave a comment