Guest User

Untitled

a guest
Aug 27th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. [myslqd]
  2. key_buffer = 16M
  3. max_allowed_packet = 16M
  4. thread_stack = 192K
  5. thread_cache_size = 8
  6. # I keep this low to limit max memory usage, with 2 or less people we don't get near this
  7. max_connections = 50
  8. # table_cache is quite large compared to default because of the massive amount of tables
  9. # Drupal uses.
  10. table_cache = 512
  11. # Increased for those large queries, though keep an eye on these queries exceeding this
  12. # value on your production server/hosting.
  13. query_cache_limit = 3M
  14. # Greatly increased due to the large numbers of queries Drupal does.
  15. query_cache_size = 32M
  16. # Total size of InnoDB's buffer, larger is better, I keep it larger than the DB of the
  17. # of the site I am currently working on.
  18. innodb_buffer_pool_size = 128M
  19. # This stops InnoDB flushing its log at every transaction, instead flushiong it once
  20. # per second. Can be detrimental to the last 1 or 2 seconds of data in case of a crash.
  21. # Imo provides the largest boost on desktops due to their usually limited I/O capacity.
  22. innodb_flush_log_at_trx_commit = 2
  23.  
  24. 127.0.0.1 localhost
  25. ::1 127.0.0.1
Add Comment
Please, Sign In to add comment