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

cpan アンインストール

アンインストール ? その 2つまり、発想としてはインストール時に行った作業の逆をやれば良いだろうということです。 そういうことで、まずは、コマンド rm を使って $HOME/.cpan/ と $HOME/perl5/ を削除しました。 $ rm -rf .cpan/ perl5/それから $HOME …

cronolog -S オプション

cronolog -S でシンボリックリンクが更新されない Ubuntu 22.04.4 cronolog 1.6.2 で確認cronologの-Sオプションはもう使えない #ubuntu18.04 - Qiita 2019

postgres tag 配列

The query to find the cats are "red", "brown" and "aloof" is also wonderfully simple. SELECT Count(*) FROM cats_array_text WHERE cat_tags @> ARRAY['red', 'brown', 'aloof'];Tags and Postgres Arrays, a Purrrfect Combination | Crunchy Data Bl…

MySQL 8.0 information_schema 更新

TL;DR information_schema.tables ( SHOW TABLE STATUS はここから値を持って生きている)の値は information_schema_stats_expiry 秒間更新されない なので SET SESSION information_schema_stats_expiry = 0 とかするとほぼ今まで通りの挙動になる See al…