Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. [mysqld]
  2.  
  3. # /etc/my.cnf:
  4. innodb_buffer_pool_size=5M
  5. innodb_log_buffer_size=256K
  6. query_cache_size=0
  7. max_connections=5
  8. key_buffer_size=8
  9. thread_cache_size=0
  10. host_cache_size=0
  11. innodb_ft_cache_size=1600000
  12. innodb_ft_total_cache_size=32000000
  13.  
  14. # per thread or per operation settings
  15. thread_stack=131072
  16. sort_buffer_size=32K
  17. read_buffer_size=8200
  18. read_rnd_buffer_size=8200
  19. max_heap_table_size=16K
  20. tmp_table_size=1K
  21. bulk_insert_buffer_size=0
  22. join_buffer_size=128
  23. net_buffer_length=1K
  24. innodb_sort_buffer_size=64K
  25.  
  26. #settings that relate to the binary log (if enabled)
  27. binlog_cache_size=4K
  28. binlog_stmt_cache_size=4K
  29.  
  30. # misc
  31. sync_frm=0
  32. innodb-flush-log-at-trx-commit=0
  33. innodb-doublewrite=0
  34. innodb-checksums=0
  35. innodb_support_xa=0
  36. innodb_flush_neighbors=0
  37. skip-name-resolve=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement