web-dev-qa-db-ja.com

WAMPサーバーを更新しました。MySQLは580MBのメモリを消費しています。

開発ボックスのWAMPSERVERを更新し、PHPおよびApache、MySQLを「5.6.12」に更新しました。その後、古い(5.1.36)からデータフォルダーをコピーしました。 )新しいものにインストールすると、MySQLは580mBを消費します。これは、(ローカルで)使用しているのは私だけで、データベースは20ほどしかなく、「メモリ」テーブルがないためです。

どうすればこれをまともな量に減らすことができますか?

私のmy.ini:

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the
# *** default location during install, and will be replaced if you
# *** upgrade to a newer version of MySQL.

[mysqld]

# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin

# These are commonly set, remove the # and set as required.
# basedir = .....
# datadir = .....
# port = .....
# server_id = .....


# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M 

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 

データベース情報:

Storage Engine  Data Size   Index Size  Total Size  
InnoDB           48.00 KB             0.00  B            48.00 KB
MEMORY            0.00  B             0.00  B             0.00  B
MyISAM          163.64 MB           122.49 MB           286.13 MB
Total           163.69 MB           122.49 MB           286.18 MB
6
Jon

「Kolerts」の答えを展開します。まず、実行しているmysqlのバージョンを確認し、システムトレイのwampアイコンを右クリックし、mysqlにカーソルを合わせます>>次に、バージョンメニューで、の選択したバージョンを見つけます。それ、wamp/bin/mysql/mysql5.6.xx(選択したバージョン)のようなパスをたどり、my.iniファイルを編集します。

タグ[mysqld](通常はファイルの終わりにあります)を見つけて、以下を貼り付けます。

table_definition_cache = 400

通常、デフォルトのパッケージでは、この属性は設定されていません。 mysqlはデフォルト値である2000を使用します。これが、リソースが完全に消費される理由です。そこにあるが値が高い場合は、400に減らします。この値は、1人または2人のユーザー、軽い目的では問題ありませんが、重いデータなどの場合は、適切に調整する必要があります。

ファイルを保存してmysqlサービスを再起動するか、新しい変更に従うすべてのサービスである可能性があります。

今度はタスクマネージャーを開いて、あなたの顔に笑顔のmysqldプロセスを見つけてください:)。

5
MTM

My.iniで「table_definition_cache = 400」を設定し、mysqldを再起動できます

2
Kolerts