Actualización facil de versión PHP en Linux
6 de diciembre de 2022Atajos de funciones de teclado
10 de enero de 2023Lista de parámetros a modificar para reducir el consumo de memoria RAM en procesos mysql/mariaDB, lógicamente las prestaciones se reducen pero hay entornos en los que será mas que suficiente como lo pueden ser alojamientos WordPress con no muchas visitas concurrentes.
# * Fine Tuning Original
#
max_connections = 100
thread_cache_size = 128
sort_buffer_size = 4M
bulk_insert_buffer_size = 16M
tmp_table_size = 32M
max_heap_table_size = 32M
-------------------------------------
# * Fine Tuning Recortado
#
max_connections = 25
thread_cache_size = 8
sort_buffer_size = 1M
bulk_insert_buffer_size = 16M
tmp_table_size = 8M
max_heap_table_size = 8M
-------------------------------------
-------------------------------------
# * MyISAM Original
#
key_buffer_size = 128M
myisam_sort_buffer_size = 512M
#
# * Query Cache Configuration
#
query_cache_size = 64M
-------------------------------------
# * MyISAM Recortado
#
key_buffer_size = 64M
myisam_sort_buffer_size = 128M
#
# * Query Cache Configuration
#
query_cache_size = 32M
-------------------------------------
-------------------------------------
# * InnoDB Original
#
default_storage_engine = InnoDB
innodb_buffer_pool_size = 256M
innodb_log_buffer_size = 8M
-------------------------------------
# * InnoDB Recortado
#
default_storage_engine = InnoDB
innodb_buffer_pool_size = 96M
innodb_log_buffer_size = 4M
ANTES Y DESPUES DE LA REDUCCIÓN DE VALORES EN LOS PARÁMETROS