Ciao a tutti...
Ho un server con windows 2008 in cui è installato mysql 5.1, ma il database risulta occupare totalmente le risorse della cpu.
Inserisco qui sotto la configurazione del mio my.ini:
codice:
[client]

port=3306

[mysql]

default-character-set=latin1


default-character-set=latin1

# The default storage engine that will be used when create new tables when
default-storage-engine=INNODB

# Set the SQL mode to strict
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"


max_connections=100


query_cache_size=8M


table_cache=256


tmp_table_size=205M


thread_cache_size=8

#*** MyISAM Specific options

myisam_max_sort_file_size=100G


myisam_sort_buffer_size=410M


key_buffer_size=354M

read_buffer_size=64K
read_rnd_buffer_size=256K


sort_buffer_size=256K


#*** INNODB Specific options ***


innodb_additional_mem_pool_size=15M


innodb_flush_log_at_trx_commit=1


innodb_log_buffer_size=7M


innodb_buffer_pool_size=1686M


innodb_log_file_size=200M


innodb_thread_concurrency=8
Cosa posso correggere per migliorare un pò la situazione?

Grazie anticipatamente!!