Advertisement
Guest User

Untitled

a guest
Apr 1st, 2012
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. [mysqld]
  2. local-infile=0
  3. safe-show-database
  4. #old_passwords
  5. back_log = 50
  6. skip-innodb
  7. max_connections = 350
  8. key_buffer_size = 256M
  9. myisam_sort_buffer_size = 64M
  10. join_buffer_size = 1M
  11. read_buffer_size = 1M
  12. sort_buffer_size = 2M
  13. table_cache = 4000
  14. thread_cache_size = 128
  15. wait_timeout = 20
  16. connect_timeout = 10
  17. tmp_table_size = 64M
  18. max_heap_table_size = 64M
  19. max_allowed_packet = 64M
  20. net_buffer_length = 16384
  21. max_connect_errors = 100000
  22. thread_concurrency = 4
  23. concurrent_insert = 2
  24. table_lock_wait_timeout = 30
  25. read_rnd_buffer_size = 786432
  26. bulk_insert_buffer_size = 8M
  27. query_cache_limit = 4M
  28. query_cache_size = 128M
  29. query_cache_type = 1
  30. query_prealloc_size = 262144
  31. query_alloc_block_size = 65536
  32. range_alloc_block_size = 4096
  33. transaction_alloc_block_size = 8192
  34. transaction_prealloc_size = 4096
  35. default-storage-engine = MyISAM
  36. max_write_lock_count = 4
  37.  
  38. [mysqld_safe]
  39. nice = -5
  40. open_files_limit = 8192
  41.  
  42. [mysqldump]
  43. quick
  44. max_allowed_packet = 64M
  45.  
  46. [myisamchk]
  47. key_buffer_size = 256M
  48. sort_buffer_size = 16M
  49. read_buffer_size = 16M
  50. write_buffer_size = 16M
  51.  
  52. [mysqlhotcopy]
  53. interactive-timeout
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement