i don't like any of those my-xxx.cnf's.
the variables are either too small or too big. i would just recommend using this as a "base" my.cnf:
Code:
[mysqld]
# Uncomment and change the next line if you installed
# MySQL somewhere other than the default C:/mysql
#basedir=C:/mysql
port=3306
skip-locking
set-variable = table_cache=512
set-variable = thread_cache_size=8
set-variable = wait_timeout=3600
[client]
port=3306
# Here you can put your username and password
# if you want so that you don't have to manually
# enter them when using mysql, mysqldump, etc.
# Uncomment the lines if you do!
#user=<username>
#password=<password>
[mysql]
no-auto-rehash
[mysqldump]
quick
and of course in this case add `tmpdir=path' if you need it under [mysqld].
Bookmarks