Tuning Mysql 4.1.10

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • doug

    Tuning Mysql 4.1.10

    I have a freebsd box with 1 gig of memory for mysql/php, I was
    wondering what my my.cnf should look like, I am doing alot of searches
    and writes on ISAM tables, I currently have the following:

    [client]
    port=3306
    socket=/tmp/mysql.sock

    [mysqld]
    port=3306
    socket=/tmp/mysql.sock
    max_connections =300
    interactive_tim eout=10
    wait_timeout=10
    connect_timeout =10
    thread_cache_si ze=256
    key_buffer=256M
    max_allowed_pac ket=15M
    table_cache=102 4
    sort_buffer=2M
    record_buffer=1 M
    join_buffer=1M
    thread_cache=10 28
    thread_concurre ncy=4
    query_cache_lim it=1M
    query_cache_siz e=32M
    query_cache_typ e=1
    ft_min_word_len =3
    delay_key_write =ALL

  • Bill Turczyn

    #2
    Re: Tuning Mysql 4.1.10

    You can reference the comments in the sample files installed on you
    system.
    The sample files are: my-huge.cnf, my-large.cnf, my-medium.cnf, and
    my-small.cnf
    By reading the comments in each of those files, you can get a good idea
    of which one most closely matches your needs.

    Comment

    Working...