MySQL my.ini - настройка быстродействия, выделение памяти, скорость работы -- какие параметры

Forums:

Самый важный параметр это:

 innodb_buffer_pool_size

скажем, можно установить его в 300 мегабайт:

 innodb_buffer_pool_size=300M

(или иное значение)
но помните, что на 32-разрядных ОСях (операционных системах) один процесс ограничен 2-3.5 гигами оперативной памяти, а потому не делайте это значение излишне большим дл таких систем.
Далее цитата:

# InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and
# row data. The bigger you set this the less disk I/O is needed to
# access data in tables. On a dedicated database server you may set this
# parameter up to 80% of the machine physical memory size. Do not set it
# too large, though, because competition of the physical memory may
# cause paging in the operating system. Note that on 32bit systems you
# might be limited to 2-3.5G of user level memory per process, so do not
# set it too high.

Также следует обратить внимание на:

query_cache_size

которые отвечает за объём кэша SELECT-запросов

Key Words for FKN + antitotal forum (CS VSU):