Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. [mysqld]
  2. key_buffer = 128M
  3. #sort_buffer = 1M
  4. sort_buffer = 2M
  5. #join_buffer = 1M
  6. join_buffer = 2M
  7. max_allowed_packet = 16M
  8. max_heap_table_size = 64M
  9. table_cache = 1024
  10. sort_buffer_size = 1M
  11. #sort_buffer_size = 8M
  12. read_buffer_size = 1M
  13. read_rnd_buffer_size = 768K
  14. myisam_sort_buffer_size = 48M
  15. thread_cache_size = 512
  16. query_cache_type = 1
  17. query_cache_limit = 4M
  18. query_cache_size = 512M
  19. tmp_table_size = 64M
  20. #thread_concurrency = 8
  21. thread_concurrency = 12
  22. max_write_lock_count = 1 #To force MySQL to temporarily elevate the priority of all SELECT statements that are waiting for a table after a specific number of inserts to the table occur. This allows READ
  23. low_priority_updates = 1
  24. #max-connections=300
  25. max-connections=500
  26. innodb_log_file_size=250M
  27. innodb_log_buffer_size=8M
  28. innodb_buffer_pool_size=1G
  29. innodb_additional_mem_pool_size=20M
  30. innodb_flush_log_at_trx_commit = 2
  31. innodb_lock_wait_timeout=50
  32. log_slow_queries
  33. log-queries-not-using-indexes
  34. long_query_time = 3
  35.  
  36. [isamchk]
  37. key_buffer = 64M
  38. sort_buffer = 64M
  39. read_buffer = 16M
  40. write_buffer = 16M
  41.  
  42. [myisamchk]
  43. key_buffer = 64M
  44. sort_buffer = 64M
  45. read_buffer = 16M
  46. write_buffer = 16M
  47. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement