• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

optimize mysql how?

Edit your my.ini/my.cnf, adjust the cache and buffer variables and use only 1 table engine (disable the other)
 
Use google, you could also check the 'Status' tab in phpMyAdmin to get a general overview of what variables should be changed.
 
It depends on what is in red, you can't make them all go green only by optimizing MySQL, your website scripts and TFS could be causing it too
 
@Cykotitan

PHP:
key_buffer		= 16M
max_allowed_packet	= 16M
thread_stack		= 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover         = BACKUP
#max_connections        = 100
#table_cache            = 64
#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit	= 1M
query_cache_size        = 16M

Anything else and this also depends on hardware settings right? x
 
Last edited:
innodb, already seen your post about possible change to myisam.
Will there be any problems if i do that or is it safe to go?
 
@Cykotitan

PHP:
key_buffer		= 16M
max_allowed_packet	= 16M
thread_stack		= 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover         = BACKUP
#max_connections        = 100
#table_cache            = 64
#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit	= 1M
query_cache_size        = 16M

Anything else and this also depends on hardware settings right? x


lol. what happends if u do this?

the server will run faster? with less laggs?
 

Similar threads

Replies
4
Views
683
Back
Top