Tag: mariadb

  • MariaDB – tuning

    Some MySQL/MariaDB tuning that I use with modification in all of my database installations. [mysqld]  # * Fine Tuning  #  key_buffer              = 256M  max_allowed_packet      = 256M  thread_stack            = 192K  thread_cache_size       = 128  join_buffer_size        = 2M # 1M for 1GB, 2M for 2GB, 4M for 4GB  tmp_table_size          = 512M  max_heap_table_size     = 256M  # This replaces the…